]> git.entuzijast.net Git - freeradius-dialup-admin.git/commitdiff
Fix bug #136, bugs found by Pawel Foremski
authorkkalev <kkalev>
Thu, 16 Sep 2004 21:12:21 +0000 (21:12 +0000)
committerkkalev <kkalev>
Thu, 16 Sep 2004 21:12:21 +0000 (21:12 +0000)
Changelog
lib/sql/change_passwd.php3

index 36903e7b7b70b657dc400101289d586a47471eb5..46758c2851c2d56860e353bf0c159207309a4ab1 100644 (file)
--- a/Changelog
+++ b/Changelog
@@ -25,6 +25,7 @@ Ver 1.75:
 * Make 'Add NAS' function in the nas admin page more easily accessible
 * Fix a small bug in user_admin.php3 found by Joerg Staedele
 * Fix a small typo in the userinfo mysql schema. Found by Evert Meulie
+* Fix bug #136, bugs found by Pawel Foremski
 Ver 1.72:
 * Move the xlat function to a separate file in lib/xlat.php3
 * Add a lib/sql/nas_list.php3 to also get the nas list from sql (naslist.conf still works)
index 5da1f822bc7f4b43d77a6e82f61b0fde28d4cfc2..35fa1dc25a0fd676d00eb04720b6eb8848ad34e3 100644 (file)
@@ -5,10 +5,10 @@ else{
        echo "<b>Could not include SQL library</b><br>\n";
        exit();
 }
-if ($config[sql_use_operator] == 'true'){
+if ($config[sql_use_operators] == 'true'){
        $text1 = ',op';
        $text2  = ",':='";
-       $text3 = "AND op = ':='";
+       $text3 = ", op = ':='";
 }
 else{
        $text1 = '';