diff options
author | Simone Rota <sip@crux.nu> | 2006-10-15 01:19:10 +0200 |
---|---|---|
committer | Simone Rota <sip@crux.nu> | 2006-10-15 01:19:10 +0200 |
commit | e011d48c6a6c27bf05bb2bf407e2a9e822df9423 (patch) | |
tree | d547487e130eddc743f9452cf27a2e66f94ace78 | |
parent | 04ab22d44910924d68febdb4371f596b07a85441 (diff) | |
download | webtools-e011d48c6a6c27bf05bb2bf407e2a9e822df9423.tar.gz webtools-e011d48c6a6c27bf05bb2bf407e2a9e822df9423.tar.xz |
Added Simon as the maintainer email, disabled sanitize
-rwxr-xr-x | portdb/portdb/index.php | 5 |
1 files changed, 3 insertions, 2 deletions
diff --git a/portdb/portdb/index.php b/portdb/portdb/index.php index 3baf74e..0e4c538 100755 --- a/portdb/portdb/index.php +++ b/portdb/portdb/index.php @@ -4,10 +4,11 @@ require('DB.php'); # Written by Simone Rota <sip@crux.nu> $dsn = 'sqlite:////home/crux/public_html/local/portdb.db'; -$admin = 'sip@varlock.com'; +$admin = 'viper@hometux.de'; function sanitize($str) { - return ereg_replace("[^[:alnum:]]","",$str); + return $str; + //return ereg_replace("[^[:alnum:]]","",$str); } function nospam($mail) { |