diff options
Diffstat (limited to 'includes/db.php')
-rwxr-xr-x | includes/db.php | 5 |
1 files changed, 3 insertions, 2 deletions
diff --git a/includes/db.php b/includes/db.php index a763283..6554b8a 100755 --- a/includes/db.php +++ b/includes/db.php | |||
@@ -1,8 +1,9 @@ | |||
1 | <?php | 1 | <?php |
2 | 2 | ||
3 | include($_SERVER['DOCUMENT_ROOT'] . '/../security/pillowcase.php'); | 3 | include_once('fix_mysql.inc.php'); |
4 | include('/srv/www/security/pillowcase.php'); | ||
4 | 5 | ||
5 | mysql_connect($dbhost, $dbuser, $dbpasswd); | 6 | $mysql_conn = mysql_connect($dbhost, $dbuser, $dbpasswd); |
6 | mysql_select_db($dbname); | 7 | mysql_select_db($dbname); |
7 | 8 | ||
8 | ?> | 9 | ?> |