summaryrefslogtreecommitdiff
path: root/html/includes/functions.php
diff options
context:
space:
mode:
authorMatthijs Kuiper <info@matthijskuiper.nl>2018-01-14 21:17:30 +0100
committerMatthijs Kuiper <info@matthijskuiper.nl>2018-09-01 11:51:41 +0200
commit3457a490dc8c9d92d23c540964a4e2d965c1c464 (patch)
treefe777114964cc607021762ec4a3502a12c919c37 /html/includes/functions.php
parent7e5c50603cbe1307d68a2b5b8ee14409e15a9dcb (diff)
Fix passing too few function arguments errors
Diffstat (limited to 'html/includes/functions.php')
-rwxr-xr-xhtml/includes/functions.php2
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);