]> git.mxchange.org Git - mailer.git/blobdiff - inc/libs/country_functions.php
Further fixes for all resets
[mailer.git] / inc / libs / country_functions.php
index 613132340139d63fd1834aa1017fd533aea2088b..5f54e8211c69f648565d0a4d5c6d9667a23cb37f 100644 (file)
@@ -16,7 +16,7 @@
  * $Author::                                                          $ *
  * -------------------------------------------------------------------- *
  * Copyright (c) 2003 - 2009 by Roland Haeder                           *
- * Copyright (c) 2009 - 2012 by Mailer Developer Team                   *
+ * Copyright (c) 2009 - 2013 by Mailer Developer Team                   *
  * For more information visit: http://mxchange.org                      *
  *                                                                      *
  * This program is free software; you can redistribute it and/or modify *
@@ -46,14 +46,21 @@ function generateCountryInfo ($id) {
        $ret = '{--COUNTRY_CODE_404--}';
 
        // Load code and description
-       $result = SQL_QUERY_ESC("SELECT `code`,`descr` FROM `{?_MYSQL_PREFIX?}_countries` WHERE `id`=%s LIMIT 1",
+       $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) {
                // Load entry
                $content = SQL_FETCHARRAY($result);
-               //* DEBUG: */ print($id.'=<pre>'.print_r($content, true).'</pre>');
+               //* DEBUG: */ print($id.'=<pre>'.print_r($content, TRUE).'</pre>');
 
                // Construct human-readable description
                $ret = sprintf("%s (%s)", $content['descr'], $content['code']);