summaryrefslogtreecommitdiffstats
path: root/handlers
diff options
context:
space:
mode:
authorneoraider <devnull@localhost>2006-03-05 01:01:01 +0100
committerneoraider <devnull@localhost>2006-03-05 01:01:01 +0100
commitd8edab617c02409178e82a59ce704d7da5de6d9a (patch)
tree59a6f6fdc26dd908d69f730a418e6a303015c384 /handlers
parentb7cab9a930cf9ab53e5d11764cd560c7d9ef1632 (diff)
downloadneon-d8edab617c02409178e82a59ce704d7da5de6d9a.tar
neon-d8edab617c02409178e82a59ce704d7da5de6d9a.zip
Anstatt der defined-Abfragen wird jetzt require_once benutzt.
Diffstat (limited to 'handlers')
-rw-r--r--handlers/default.inc.php2
-rw-r--r--handlers/phpexec.inc.php4
2 files changed, 3 insertions, 3 deletions
diff --git a/handlers/default.inc.php b/handlers/default.inc.php
index 62f49ce..14e00c3 100644
--- a/handlers/default.inc.php
+++ b/handlers/default.inc.php
@@ -1,5 +1,5 @@
<?PHP
- include('code/message.inc.php');
+ require_once('code/message.inc.php');
class default_handler {
function Get($data) {
diff --git a/handlers/phpexec.inc.php b/handlers/phpexec.inc.php
index fa84d61..76dccae 100644
--- a/handlers/phpexec.inc.php
+++ b/handlers/phpexec.inc.php
@@ -1,6 +1,6 @@
<?PHP
- include('code/message.inc.php');
- include('code/links.inc.php');
+ require_once('code/message.inc.php');
+ require_once('code/links.inc.php');
class phpexec_handler {
function Get($data) {