From: <abe...@us...> - 2013-10-03 18:41:27
|
Revision: 6214 http://sourceforge.net/p/astlinux/code/6214 Author: abelbeck Date: 2013-10-03 18:41:24 +0000 (Thu, 03 Oct 2013) Log Message: ----------- web interface, SQL-DATA tab, add support the LDAP database '/mnt/kd/ldap-odbc.sqlite3' file if it exists Modified Paths: -------------- branches/1.0/package/webinterface/altweb/admin/phpliteadmin.php Modified: branches/1.0/package/webinterface/altweb/admin/phpliteadmin.php =================================================================== --- branches/1.0/package/webinterface/altweb/admin/phpliteadmin.php 2013-10-03 01:04:36 UTC (rev 6213) +++ branches/1.0/package/webinterface/altweb/admin/phpliteadmin.php 2013-10-03 18:41:24 UTC (rev 6214) @@ -99,6 +99,9 @@ if (is_file('/mnt/kd/cdr-sqlite3/master.db')) { $databases[] = array( "path"=> "/mnt/kd/cdr-sqlite3/master.db", "name"=> "CDR SQLite3" ); } +if (is_file('/mnt/kd/ldap-odbc.sqlite3')) { + $databases[] = array( "path"=> "/mnt/kd/ldap-odbc.sqlite3", "name"=> "LDAP" ); +} //AstLinux// end of define database files This was sent by the SourceForge.net collaborative development platform, the world's largest Open Source development site. |