1
0
mirror of https://github.com/e107inc/e107.git synced 2025-08-10 16:46:50 +02:00

Debug display tweaks

This commit is contained in:
CaMer0n
2009-08-17 15:45:20 +00:00
parent aaf596e938
commit 96cc442d50
4 changed files with 27 additions and 22 deletions

View File

@@ -11,9 +11,9 @@
| GNU General Public License (http://gnu.org).
|
| $Source: /cvs_backup/e107_0.8/e107_handlers/traffic_class.php,v $
| $Revision: 1.1.1.1 $
| $Date: 2006-12-02 04:33:58 $
| $Author: mcfly_e107 $
| $Revision: 1.2 $
| $Date: 2009-08-17 15:45:20 $
| $Author: e107coders $
+----------------------------------------------------------------------------+
*/
@@ -167,13 +167,14 @@ class e107_traffic {
}
function Display() {
if (!defined("E107_DBG_TRAFFIC") || !E107_DBG_TRAFFIC) {
if (!defined("E107_DBG_TRAFFIC") || !E107_DBG_TRAFFIC || E107_DBG_BASIC) // 'Basic' should not display Traffic.
{
return '';
}
$text = '';
@include_once(e_HANDLER.'traffic_class_display.php');
return $text;
return $text;
}
}