index : archweb32 | |
Archlinux32 website | gitolite user |
summaryrefslogtreecommitdiff |
author | Tyler Dence <tyzoid.d@gmail.com> | 2018-06-19 14:10:43 -0400 |
---|---|---|
committer | Tyler Dence <tyzoid.d@gmail.com> | 2018-06-19 14:10:43 -0400 |
commit | 0b273a0b2cf1b10148810b4aed1dabde11602481 (patch) | |
tree | b6d715581ff508ecbe65e5f727a4051554c2f892 /lib | |
parent | 4eaa80ae7e67bbadf4b6cdd4634496368dc451d5 (diff) |
-rw-r--r-- | lib/mysql.php | 3 | ||||
-rw-r--r-- | lib/style.php | 2 |
diff --git a/lib/mysql.php b/lib/mysql.php index ce48f73..60bfa3a 100644 --- a/lib/mysql.php +++ b/lib/mysql.php @@ -4,7 +4,8 @@ if (isset($mysql)) return; -include "lib/http.php"; +require_once "../init.php"; +include_once BASE . "/lib/http.php"; $mysql = new mysqli("localhost", "webserver", "empty", "buildmaster"); if ( $mysql -> connect_error ) { diff --git a/lib/style.php b/lib/style.php index 8b84e0e..a8a0396 100644 --- a/lib/style.php +++ b/lib/style.php @@ -3,7 +3,7 @@ if (function_exists("print_header")) return; -require_once "../init.php" +require_once "../init.php"; require_once BASE . "/lib/mysql.php"; function print_header($title) { |