From 17b860c30bad4430bcf08e287b48422e9dfb24a5 Mon Sep 17 00:00:00 2001 From: Cameron Date: Thu, 10 Mar 2022 11:31:46 -0800 Subject: [PATCH] Fixes #4664 - sorting by signature returned no results. --- e107_admin/users.php | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/e107_admin/users.php b/e107_admin/users.php index 493082160..8840448ea 100644 --- a/e107_admin/users.php +++ b/e107_admin/users.php @@ -313,7 +313,7 @@ class users_admin_ui extends e_admin_ui 'user_admin' => array('title' => LAN_USER_22, 'tab'=>0, 'type' => 'method', 'width' => 'auto', 'thclass'=>'center', 'class'=>'center', 'filter'=>true, 'batch'=>true, 'readParms'=>'trueonly=1'), 'user_perms' => array('title' => LAN_USER_23, 'tab'=>0, 'type' => 'method', 'data'=>'str', 'width' => 'auto'), 'user_pwchange' => array('title' => LAN_USER_24, 'tab'=>0, 'noedit'=>true, 'type'=>'datestamp' , 'width' => 'auto'), - + 'user_signature' => array('title' => LAN_USER_09, 'type' => 'textarea', 'data'=>'str', 'width' => 'auto', 'writeParms'=>array('size'=>'xxlarge')) ); protected $fieldpref = array('user_ban','user_name','user_loginname','user_login','user_email','user_class','user_admin'); @@ -411,7 +411,7 @@ class users_admin_ui extends e_admin_ui } - $this->fields['user_signature'] = array('title' => LAN_USER_09, 'type' => 'textarea', 'data'=>'str', 'width' => 'auto', 'writeParms'=>array('size'=>'xxlarge')); + // $this->fields['user_signature'] = array('title' => LAN_USER_09, 'type' => 'textarea', 'data'=>'str', 'width' => 'auto', 'writeParms'=>array('size'=>'xxlarge')); // $this->fields['user_signature']['writeParms']['data'] = e107::getUserClass()->uc_required_class_list("classes"); $this->fields['options'] = array('title'=> LAN_OPTIONS." ", 'type' => 'method', 'forced'=>TRUE, 'width' => '10%', 'thclass' => 'right last', 'class' => 'left');