Coding standards

This commit is contained in:
Alexander M. Turek
2002-07-15 21:26:12 +00:00
parent 85e43e362f
commit 82cb0689c0
2 changed files with 2 additions and 1 deletions

View File

@@ -10,6 +10,7 @@ $Source$
- Removed a comment and - Removed a comment and
- Changed the default value for $cfg['AllowAnywhereRecoding'] into FALSE. - Changed the default value for $cfg['AllowAnywhereRecoding'] into FALSE.
* header.inc.php3: Better fix against bug #571409, thanks to Lo<4C>c. * header.inc.php3: Better fix against bug #571409, thanks to Lo<4C>c.
* libraries/common.lib.php3: Coding standards.
2002-07-15 Marc Delisle <lem9@users.sourceforge.net> 2002-07-15 Marc Delisle <lem9@users.sourceforge.net>
* db_details_export.php3, db_details_links.php3, Documentation.html, * db_details_export.php3, db_details_links.php3, Documentation.html,

View File

@@ -1339,7 +1339,7 @@ if (typeof(document.getElementById) != 'undefined'
// The name contains caracters <> a-z, A-Z and "_" -> not a reserved // The name contains caracters <> a-z, A-Z and "_" -> not a reserved
// word // word
if (!ereg('^[a-zA-Z_]+$', $the_name)) { if (!ereg('^[a-zA-Z_]+$', $the_name)) {
return true; return TRUE;
} }
// Else do the work // Else do the work