X-Git-Url: https://git.mxchange.org/?a=blobdiff_plain;f=inc%2Flibs%2Fcountry_functions.php;h=66a2fed69445012b4baee3860f403e976ad04a9f;hb=3e4fd7d36d85a58509b19060ae892f37299be92e;hp=747513d63bb5c7999e03d5d5af00762e3f6369c0;hpb=3f925e3bfb13aea053d26a1d95d3dc4b6d170bb8;p=mailer.git diff --git a/inc/libs/country_functions.php b/inc/libs/country_functions.php index 747513d63b..66a2fed694 100644 --- a/inc/libs/country_functions.php +++ b/inc/libs/country_functions.php @@ -14,12 +14,10 @@ * $Date:: $ * * $Tag:: 0.2.1-FINAL $ * * $Author:: $ * - * Needs to be in all Files and every File needs "svn propset * - * svn:keywords Date Revision" (autoprobset!) at least!!!!!! * * -------------------------------------------------------------------- * * Copyright (c) 2003 - 2009 by Roland Haeder * - * Copyright (c) 2009, 2010 by Mailer Developer Team * - * For more information visit: http://www.mxchange.org * + * Copyright (c) 2009 - 2011 by Mailer Developer Team * + * For more information visit: http://mxchange.org * * * * This program is free software; you can redistribute it and/or modify * * it under the terms of the GNU General Public License as published by * @@ -48,13 +46,14 @@ 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.'=
'.print_r($content, true).'
'); // Construct human-readable description $ret = sprintf("%s (%s)", $content['descr'], $content['code']);