From: Philippe M. <phi...@us...> - 2002-01-30 11:23:16
|
Update of /cvsroot/squirrelmail/squirrelmail/plugins/administrator In directory usw-pr-cvs1:/tmp/cvs-serv22546/plugins/administrator Modified Files: defines.php options.php Log Message: * Fixed intl. of addrbook_search_html.php * Added administrator's strings . * Translated administrator into spanish. * Added ldap define to administrator. Index: defines.php =================================================================== RCS file: /cvsroot/squirrelmail/squirrelmail/plugins/administrator/defines.php,v retrieving revision 1.7 retrieving revision 1.8 diff -u -w -r1.7 -r1.8 --- defines.php 2002/01/29 18:33:56 1.7 +++ defines.php 2002/01/30 11:23:13 1.8 @@ -26,6 +26,7 @@ define('SMOPT_TYPE_TITLE', 9); define('SMOPT_TYPE_THEME', 10); define('SMOPT_TYPE_PLUGINS', 11); +define('SMOPT_TYPE_LDAP', 12); global $languages; Index: options.php =================================================================== RCS file: /cvsroot/squirrelmail/squirrelmail/plugins/administrator/options.php,v retrieving revision 1.10 retrieving revision 1.11 diff -u -w -r1.10 -r1.11 --- options.php 2002/01/29 20:13:37 1.10 +++ options.php 2002/01/30 11:23:13 1.11 @@ -195,9 +195,12 @@ $type = SMOPT_TYPE_THEME; } else if ( substr( $k, 0, 9 ) == '$plugins[' ) { $type = SMOPT_TYPE_PLUGINS; + } else if ( substr( $k, 0, 13 ) == '$ldap_server[' ) { + $type = SMOPT_TYPE_LDAP; } switch ( $type ) { + case SMOPT_TYPE_LDAP: case SMOPT_TYPE_PLUGINS: case SMOPT_TYPE_THEME: case SMOPT_TYPE_HIDDEN: |