diff options
author | Matthijs Kuiper <info@matthijskuiper.nl> | 2018-01-14 21:17:30 +0100 |
---|---|---|
committer | Matthijs Kuiper <info@matthijskuiper.nl> | 2018-09-01 11:51:41 +0200 |
commit | 3457a490dc8c9d92d23c540964a4e2d965c1c464 (patch) | |
tree | fe777114964cc607021762ec4a3502a12c919c37 /html/includes/functions.php | |
parent | 7e5c50603cbe1307d68a2b5b8ee14409e15a9dcb (diff) |
Fix passing too few function arguments errors
Diffstat (limited to 'html/includes/functions.php')
-rwxr-xr-x | html/includes/functions.php | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/html/includes/functions.php b/html/includes/functions.php index d060edd..cefc1cc 100755 --- a/html/includes/functions.php +++ b/html/includes/functions.php @@ -1,6 +1,6 @@ <?php
// Connect to database
-$GLOBALS["___mysqli_link"] = mysqli_connect($hostname, $uname, $upass, $dbname);
+$GLOBALS["___mysqli_link"] = mysqli_connect($hostname, $uname, $upass, $dbname);
// Error reporting
// error_reporting(E_ALL & ~E_NOTICE);
|