Rename include/db.php to include/query.php, all of the functions in db.php were named query_*(). Rename test_db.php to

test_query.php to match the rename of include/db.php.  Modify include/incl.php to include query.php instead of db.php
This commit is contained in:
Chris Morgan
2006-07-17 20:56:07 +00:00
committed by WineHQ
parent a41a3577ce
commit 0019810922
4 changed files with 4 additions and 4 deletions

View File

@@ -11,7 +11,7 @@ require(BASE."include/user.php");
require(BASE."include/session.php");
require(BASE."include/menu.php");
require(BASE."include/html.php");
require(BASE."include/db.php");
require(BASE."include/query.php");
/* if magic quotes are enabled make sure the user disables them */
/* otherwise they will see all kinds of odd effects that are difficult */