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

Private Messages: Fixes #1485. Also check language files for changes. 'fw' (fixed width) option added to $tp->toGlyph()

This commit is contained in:
Cameron
2016-04-03 14:37:37 -07:00
parent a21cce9c4b
commit 2c18d90b9c
14 changed files with 189 additions and 105 deletions

View File

@@ -28,6 +28,9 @@ class user_select
*/
function user_list($class, $form_name)
{
// e107::getMessage()->addDebug("Deprecated user_list Method used ".debug_backtrace());
global $sql, $tp;
if($class === FALSE) { $class = e_UC_MEMBER;}
switch ($class)
@@ -63,7 +66,11 @@ class user_select
$text .= "</select>";
$text .= $where;
if(ADMIN)
{
$text .= "user_list method is deprecated. ".print_a(debug_backtrace(),true);
}
return $text;
}