From: Eric F. <wg...@us...> - 2004-08-09 21:29:49
|
Update of /cvsroot/phpliteadmin/phpLiteAdmin In directory sc8-pr-cvs1.sourceforge.net:/tmp/cvs-serv29621 Modified Files: db.php5 Log Message: Fixed minor problems Index: db.php5 =================================================================== RCS file: /cvsroot/phpliteadmin/phpLiteAdmin/db.php5,v retrieving revision 1.2 retrieving revision 1.3 diff -u -d -r1.2 -r1.3 --- db.php5 7 Aug 2004 10:19:50 -0000 1.2 +++ db.php5 9 Aug 2004 21:29:39 -0000 1.3 @@ -43,7 +43,6 @@ $Database = new Database( $db_path, 0777, &$sqlite_error ); print '<?xml version="1.0" encoding="UTF-8" ?>' . "\n"; -print '<?xml-stylesheet href="style/db_structure.xsl" type="text/xsl" ?>' . "\n"; switch( $mode ) { @@ -64,6 +63,7 @@ // List tables, the DB structure default: + print '<?xml-stylesheet href="style/db_structure.xsl" type="text/xsl" ?>' . "\n"; print "<tables>\n"; $sql = "SELECT name |