diff options
author | cookie <cookie@29ba0400-6e00-0410-a75a-ca02368028f8> | 2006-12-04 19:54:51 +0000 |
---|---|---|
committer | cookie <cookie@29ba0400-6e00-0410-a75a-ca02368028f8> | 2006-12-04 19:54:51 +0000 |
commit | a52ee4a288ec57c2983173460237e4137440a873 (patch) | |
tree | 3c4101df8fffbbca647ef9d86e6e9410ca1f26e1 /www-ssl/admin/dect.php | |
parent | 34b50a61f8ec080d66449b7c644e5098102e2145 (diff) |
SQL injektion behoben
git-svn-id: svn://svn.cccv.de/engel-system@198 29ba0400-6e00-0410-a75a-ca02368028f8
Diffstat (limited to 'www-ssl/admin/dect.php')
-rwxr-xr-x | www-ssl/admin/dect.php | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/www-ssl/admin/dect.php b/www-ssl/admin/dect.php index 49cb72bc..1092542d 100755 --- a/www-ssl/admin/dect.php +++ b/www-ssl/admin/dect.php @@ -38,7 +38,7 @@ if( $_GET["dial"]=="dial") echo "<select name=\"DECT\">\n"; echo "\t<option value=\"\">costum</option>\n"; - $usql="SELECT * FROM User WHERE NOT DECT='' ORDER BY Nick"; + $usql="SELECT * FROM `User` WHERE NOT `DECT`='' ORDER BY `Nick`"; $uErg = mysql_query($usql, $con); $urowcount = mysql_num_rows($uErg); for ($k=0; $k<$urowcount; $k++) |