]> git.mxchange.org Git - mailer.git/blobdiff - inc/libs/country_functions.php
Some language strings fixed, renamed. Copyright notice updated
[mailer.git] / inc / libs / country_functions.php
index caf59a4ded4ae33c6537e21c9d16eb71c6adf475..a001eef4658d86c5273e481dce3e7586324b5fdf 100644 (file)
  * $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 - 2011 by Mailer Developer Team                   *
  * For more information visit: http://www.mxchange.org                  *
  *                                                                      *
  * This program is free software; you can redistribute it and/or modify *
@@ -44,7 +43,7 @@ if (!defined('__SECURITY')) {
 // Generate a human-readable country description with code
 function generateCountryInfo ($id) {
        // Not found is the default
-       $ret = getMessage('COUNTRY_404');
+       $ret = '{--COUNTRY_CODE_404--}';
 
        // Load code and description
        $result = SQL_QUERY_ESC("SELECT `code`, `descr` FROM `{?_MYSQL_PREFIX?}_countries` WHERE `id`=%s LIMIT 1",
@@ -54,6 +53,7 @@ function generateCountryInfo ($id) {
        if (SQL_NUMROWS($result) == 1) {
                // Load entry
                $content = SQL_FETCHARRAY($result);
+               //* DEBUG: */ print($id.'=<pre>'.print_r($content, true).'</pre>');
 
                // Construct human-readable description
                $ret = sprintf("%s (%s)", $content['descr'], $content['code']);