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

Userclass name tweak

This commit is contained in:
CaMer0n
2009-08-04 15:04:18 +00:00
parent 5ebd168620
commit b7dac9cf59
2 changed files with 18 additions and 5 deletions

View File

@@ -11,8 +11,8 @@
| GNU General Public License (http://gnu.org).
|
| $Source: /cvs_backup/e107_0.8/e107_handlers/userclass_class.php,v $
| $Revision: 1.37 $
| $Date: 2009-08-04 14:36:54 $
| $Revision: 1.38 $
| $Date: 2009-08-04 15:04:18 $
| $Author: e107coders $
+----------------------------------------------------------------------------+
*/
@@ -642,6 +642,13 @@ class user_class
{
return $this->fixed_classes[$id];
}
if($id < 0)
{
$val = abs($id);
$name = isset($this->class_tree[$val]['userclass_name']) ? $this->class_tree[$val]['userclass_name'] : $this->fixed_classes[$val];
return str_replace("--CLASS--", $name, UC_LAN_INVERT);
}
return '';
}