diff options
author | Matthijs Kuiper <info@matthijskuiper.nl> | 2018-01-15 22:53:54 +0100 |
---|---|---|
committer | Matthijs Kuiper <info@matthijskuiper.nl> | 2018-09-01 11:51:41 +0200 |
commit | a00f7e8976ad5ec1be0128fe7ccdae2d0c43b619 (patch) | |
tree | f437e4f694400657995c6064266bc9bfe445684c /html/includes/functions.php | |
parent | 3457a490dc8c9d92d23c540964a4e2d965c1c464 (diff) |
ereg_match to preg_matchupdate-to-mysqli
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 cefc1cc..d0be5b7 100755 --- a/html/includes/functions.php +++ b/html/includes/functions.php @@ -28,7 +28,7 @@ srand(microtime() * 1000); $charimg = $charimages[rand(0, count($charimages)-1)];
// Two letter codes and their corresponding country names
-require_once(dirname(__FILE__) .'/countries.php');
+require_once(dirname(__FILE__) . '/countries.php');
// Addslashes if magic_quotes are off
function my_addslashes($data) {
|