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

Removed showing of asterisk for 'same userclass as previous user'

This commit is contained in:
bugrain
2009-08-26 21:17:20 +00:00
parent c39976ab65
commit d7ec50aecc

View File

@@ -10,9 +10,9 @@
* Administration Area - Users * Administration Area - Users
* *
* $Source: /cvs_backup/e107_0.8/e107_admin/users.php,v $ * $Source: /cvs_backup/e107_0.8/e107_admin/users.php,v $
* $Revision: 1.55 $ * $Revision: 1.56 $
* $Date: 2009-08-23 10:57:51 $ * $Date: 2009-08-26 21:17:20 $
* $Author: marj_nl_fr $ * $Author: bugrain $
* *
*/ */
require_once ('../class2.php'); require_once ('../class2.php');
@@ -1081,13 +1081,7 @@ class users
{ {
$text .= $row[$disp].' '; $text .= $row[$disp].' ';
} }
if (!in_array($disp,$boleanfields) && isset ($prev[$disp]) && $row[$disp] == $prev[$disp] && $prev[$disp] != "")
{
// show matches
$text .= " <b>*</b>";
}
$text .= "</td>"; $text .= "</td>";
$prev[$disp] = $row[$disp];
} }
// ------------------------------------------------------------- // -------------------------------------------------------------
$qry = (e_QUERY) ? "?".e_QUERY : ""; $qry = (e_QUERY) ? "?".e_QUERY : "";