1
0
mirror of https://github.com/e107inc/e107.git synced 2025-07-25 17:01:43 +02:00

Bugtracker #3964 - hard-coded LAN

This commit is contained in:
e107steved
2007-05-31 19:38:15 +00:00
parent dbf4ef016a
commit 4561d1a378
2 changed files with 7 additions and 6 deletions

View File

@@ -11,9 +11,9 @@
| GNU General Public License (http://gnu.org).
|
| $Source: /cvs_backup/e107_0.8/e107_plugins/log/languages/English.php,v $
| $Revision: 1.1.1.1 $
| $Date: 2006-12-02 04:35:30 $
| $Author: mcfly_e107 $
| $Revision: 1.2 $
| $Date: 2007-05-31 19:38:10 $
| $Author: e107steved $
+----------------------------------------------------------------------------+
*/
@@ -60,5 +60,6 @@ define("ADSTAT_L38", "Unique visits by month");
define("ADSTAT_L39", "remove this entry");
define("ADSTAT_L40", "days");
define("ADSTAT_L41", "Error");
define("ADSTAT_L42", "No monthly stats yet.");
?>

View File

@@ -11,8 +11,8 @@
| GNU General Public License (http://gnu.org).
|
| $Source: /cvs_backup/e107_0.8/e107_plugins/log/stats.php,v $
| $Revision: 1.2 $
| $Date: 2007-02-10 15:54:47 $
| $Revision: 1.3 $
| $Date: 2007-05-31 19:38:10 $
| $Author: e107steved $
+----------------------------------------------------------------------------+
*/
@@ -1110,7 +1110,7 @@ class siteStats {
global $sql;
if(!$entries = $sql -> db_Select("logstats", "*", "log_id REGEXP('^[[:digit:]]+\-[[:digit:]]+$') ORDER BY CONCAT(LEFT(log_id,4), RIGHT(log_id,2)) DESC")) {
return "No monthly stats yet.";
return ADSTAT_L42;
}
$array = $sql -> db_getList();