X-Git-Url: https://git.mxchange.org/?a=blobdiff_plain;f=inc%2Flibs%2Fcountry_functions.php;h=e8f7df36f5d37d505d4554acdc886ab6686b0d91;hb=4d64a8575593f7cc8f69aec74d14c29ba6e8ef6c;hp=ec76f25c1e8430b05b1498dad49d796a248b3828;hpb=fb7120ffa230b62b54895bcf95952e1cf30f8594;p=mailer.git diff --git a/inc/libs/country_functions.php b/inc/libs/country_functions.php index ec76f25c1e..e8f7df36f5 100644 --- a/inc/libs/country_functions.php +++ b/inc/libs/country_functions.php @@ -38,15 +38,15 @@ // Some security stuff... if (!defined('__SECURITY')) { - $INC = substr(dirname(__FILE__), 0, strpos(dirname(__FILE__), "/inc") + 4) . "/security.php"; + $INC = substr(dirname(__FILE__), 0, strpos(dirname(__FILE__), '/inc') + 4) . '/security.php'; require($INC); } // Generate a human-readable country description with code function COUNTRY_GENERATE_INFO ($id) { // Load code and description - $result = SQL_QUERY_ESC("SELECT code, descr FROM `{!_MYSQL_PREFIX!}_countries` WHERE id=%s LIMIT 1", - array(bigintval($id)), __FUNCTION__, __LINE__); + $result = SQL_QUERY_ESC("SELECT code, descr FROM `{!_MYSQL_PREFIX!}_countries` WHERE `id`=%s LIMIT 1", + array(bigintval($id)), __FUNCTION__, __LINE__); // Is there an entry? if (SQL_NUMROWS($result) == 1) {