summaryrefslogtreecommitdiff
path: root/inc/auth
diff options
context:
space:
mode:
authorhenning.noren <henning.noren@gmail.com>2007-01-03 21:57:00 +0100
committerhenning.noren <henning.noren@gmail.com>2007-01-03 21:57:00 +0100
commit44881bd0f492e789063188af34111af4b4117028 (patch)
tree5d54c53e786bbfe45a3dfe0efda26e51c6ca5fc6 /inc/auth
parentbab4a8bd9772137a187f48beb6e61c185932b692 (diff)
downloadrpg-44881bd0f492e789063188af34111af4b4117028.tar.gz
rpg-44881bd0f492e789063188af34111af4b4117028.tar.bz2
tf_rename_lower.patch
Name the TRUE/FALSE-constants consistently as lowercase everywhere. This might also be an tiny optimization in some environments. darcs-hash:20070103205700-d2a3e-e7ec0aedb938d563f583116a2d5b17f3a3fea36c.gz
Diffstat (limited to 'inc/auth')
-rw-r--r--inc/auth/mysql.class.php2
-rw-r--r--inc/auth/pgsql.class.php2
2 files changed, 2 insertions, 2 deletions
diff --git a/inc/auth/mysql.class.php b/inc/auth/mysql.class.php
index aea11d35f..86a5fefa2 100644
--- a/inc/auth/mysql.class.php
+++ b/inc/auth/mysql.class.php
@@ -24,7 +24,7 @@ class auth_mysql extends auth_basic {
* Constructor
*
* checks if the mysql interface is available, otherwise it will
- * set the variable $success of the basis class to FALSE
+ * set the variable $success of the basis class to false
*
* @author Matthias Grimm <matthiasgrimm@users.sourceforge.net>
*/
diff --git a/inc/auth/pgsql.class.php b/inc/auth/pgsql.class.php
index 60c36e258..cb3d2319f 100644
--- a/inc/auth/pgsql.class.php
+++ b/inc/auth/pgsql.class.php
@@ -20,7 +20,7 @@ class auth_pgsql extends auth_mysql {
* Constructor
*
* checks if the pgsql interface is available, otherwise it will
- * set the variable $success of the basis class to FALSE
+ * set the variable $success of the basis class to false
*
* @author Matthias Grimm <matthiasgrimm@users.sourceforge.net>
* @author Andreas Gohr <andi@splitbrain.org>