|
1 | 1 | <?php
|
2 | 2 | /*
|
3 | 3 | OracleEditor.php
|
4 |
| - Version 1.20 |
5 |
| - by Tim Strehle <tim@strehle.de> |
| 4 | + Version 1.21 |
| 5 | + by Tim Strehle <tim.strehle@mailbox.org> |
6 | 6 |
|
7 | 7 | https://github.com/tistre/oracleeditor
|
8 | 8 |
|
|
13 | 13 | I wrote it for situations where you quickly need to do some small data
|
14 | 14 | manipulation and don't have a better tool available. OracleEditor.php is
|
15 | 15 | free and Open Source.
|
16 |
| - Feel free to contact me at tim@strehle.de with questions/comments. |
| 16 | + Feel free to contact me at tim.strehle@mailbox.org with questions/comments. |
17 | 17 |
|
18 | 18 | Disclaimer:
|
19 | 19 | Use this software at your own risk. I won't guarantee that it works, and
|
|
25 | 25 |
|
26 | 26 | Requirements:
|
27 | 27 | PHP 4 (version 4.1 or greater) with Session and OCI8 support.
|
28 |
| - Works fine with the php.ini setting "register_globals = off", |
29 |
| - and regardless of the "magic_quotes_gpc" setting. |
| 28 | + Works fine with the php.ini setting "register_globals = off". |
30 | 29 | */
|
31 | 30 |
|
32 | 31 | // Don't write PHP warnings into HTML. Watch your PHP error_log file!
|
|
37 | 36 |
|
38 | 37 | $version = trim(substr('$Revision: 1.20 $', 10, -1));
|
39 | 38 |
|
40 |
| -// Fix magic_quotes_gpc garbage |
41 |
| - |
42 |
| -if (get_magic_quotes_gpc()) |
43 |
| - { function stripslashes_deep($value) |
44 |
| - { return (is_array($value) ? array_map('stripslashes_deep', $value) : stripslashes($value)); |
45 |
| - } |
46 |
| - |
47 |
| - $_REQUEST = array_map('stripslashes_deep', $_REQUEST); |
48 |
| - } |
49 |
| - |
50 | 39 | // To allow multiple independent OracleEditor sessions,
|
51 | 40 | // propagate session ID in the URL instead of a cookie.
|
52 | 41 |
|
|
527 | 516 | { ?>
|
528 | 517 |
|
529 | 518 | </table>
|
530 |
| - <p>HTML generated by <a href="https://github.com/tistre/oracleeditor">OracleEditor.php</a> <?php echo $version; ?> © 2017 by <a href="https://www.strehle.de/tim/">Tim Strehle</a> <<a href="mailto:tim@strehle.de">tim@strehle.de</a>></p> |
| 519 | + <p>HTML generated by <a href="https://github.com/tistre/oracleeditor">OracleEditor.php</a> <?php echo $version; ?> © 2017 by <a href="https://www.strehle.de/tim/">Tim Strehle</a> <<a href="mailto:tim.strehle@mailbox.org">tim.strehle@mailbox.org</a>></p> |
531 | 520 | </body>
|
532 | 521 | </html>
|
533 | 522 |
|
@@ -1730,7 +1719,7 @@ function pof_getforeignkeys($table)
|
1730 | 1719 |
|
1731 | 1720 | </form>
|
1732 | 1721 |
|
1733 |
| -<a href="https://github.com/tistre/oracleeditor" title="OracleEditor.php homepage">OracleEditor.php</a> <?php echo $version; ?> © 2017 by <a href="https://www.strehle.de/tim/" title="Tim Strehle's homepage">Tim Strehle</a> <<a href="mailto:tim@strehle.de" title="Send e-mail to Tim Strehle">tim@strehle.de</a>> |
| 1722 | +<a href="https://github.com/tistre/oracleeditor" title="OracleEditor.php homepage">OracleEditor.php</a> <?php echo $version; ?> © 2017 by <a href="https://www.strehle.de/tim/" title="Tim Strehle's homepage">Tim Strehle</a> <<a href="mailto:tim.strehle@mailbox.org" title="Send e-mail to Tim Strehle">tim.strehle@mailbox.org</a>> |
1734 | 1723 |
|
1735 | 1724 | </body>
|
1736 | 1725 | </html>
|
0 commit comments