More misc fixes and rewrites (sorry, lame description)
[mailer.git] / inc / libs / country_functions.php
index d8cd7d7781528482380878a66c896039cd898be2..e8f7df36f5d37d505d4554acdc886ab6686b0d91 100644 (file)
@@ -45,8 +45,8 @@ if (!defined('__SECURITY')) {
 // 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) {