1
0
mirror of https://github.com/e107inc/e107.git synced 2025-08-01 20:30:39 +02:00

Commented out level handler related code to prevent system parse errors on front-end, awaiting for new level handler.

This commit is contained in:
secretr
2010-04-24 11:48:19 +00:00
parent 4e8be9a7b8
commit b6abcc7cf1
4 changed files with 26 additions and 10 deletions

View File

@@ -133,7 +133,8 @@ SC_END
SC_BEGIN LEVEL SC_BEGIN LEVEL
global $LEVEL, $comrow, $pref; global $LEVEL, $comrow, $pref;
$ldata = get_level($comrow['user_id'], $comrow['user_forums'], $comrow['user_comments'], $comrow['user_chats'], $comrow['user_visits'], $comrow['user_join'], $comrow['user_admin'], $comrow['user_perms'], $pref); //FIXME - new level handler, currently commented to avoid parse errors
//$ldata = get_level($comrow['user_id'], $comrow['user_forums'], $comrow['user_comments'], $comrow['user_chats'], $comrow['user_visits'], $comrow['user_join'], $comrow['user_admin'], $comrow['user_perms'], $pref);
return ($comrow['user_admin'] ? $ldata[0] : $ldata[1]); return ($comrow['user_admin'] ? $ldata[0] : $ldata[1]);
SC_END SC_END

View File

@@ -110,9 +110,10 @@ SC_END
SC_BEGIN USER_LEVEL SC_BEGIN USER_LEVEL
global $user, $pref; global $user, $pref;
require_once(e_HANDLER."level_handler.php"); //FIXME - new level handler, currently commented to avoid parse errors
$ldata = get_level($user['user_id'], $user['user_forums'], $user['user_comments'], $user['user_chats'], $user['user_visits'], $user['user_join'], $user['user_admin'], $user['user_perms'], $pref); //require_once(e_HANDLER."level_handler.php");
//$ldata = get_level($user['user_id'], $user['user_forums'], $user['user_comments'], $user['user_chats'], $user['user_visits'], $user['user_join'], $user['user_admin'], $user['user_perms'], $pref);
$ldata = array();
if (strstr($ldata[0], "IMAGE_rank_main_admin_image")) if (strstr($ldata[0], "IMAGE_rank_main_admin_image"))
{ {
return LAN_USER_31; return LAN_USER_31;

View File

@@ -211,7 +211,8 @@ class comment
$rater = new rater; $rater = new rater;
} }
} }
require_once (e_HANDLER."level_handler.php"); //FIXME - new level handler, currently commented to avoid parse errors
//require_once (e_HANDLER."level_handler.php");
if (!$width) if (!$width)
{ {
$width = 0; $width = 0;

View File

@@ -2,18 +2,31 @@
/* /*
* e107 website system * e107 website system
* *
* Copyright (C) 2008-2009 e107 Inc (e107.org) * Copyright (C) 2008-2010 e107 Inc (e107.org)
* Released under the terms and conditions of the * Released under the terms and conditions of the
* GNU General Public License (http://www.gnu.org/licenses/gpl.txt) * GNU General Public License (http://www.gnu.org/licenses/gpl.txt)
* *
* News handler * News handler
* *
* $Source: /cvs_backup/e107_0.8/e107_handlers/news_class.php,v $ * $URL$
* $Revision$ * $Id$
* $Date$
* $Author$
*/ */
/**
*
* @package e107
* @subpackage e107_handlers
* @version $Id$
* @author e107inc
*
* Classes:
* news - old news class
* e_news_item - news data model - the future
* e_news_tree - news items collection
* e_news_category_item - news category data model
* e_news_category_tree - news category items collection
*/
if (!defined('e107_INIT')) { exit; } if (!defined('e107_INIT')) { exit; }
class news { class news {