From e1ceb050e19c7574bca146a8da7047ee4ff456b5 Mon Sep 17 00:00:00 2001
From: Marius Burkard <m.burkard@pixcept.de>
Date: Sun, 10 Jul 2016 05:02:35 -0400
Subject: [PATCH] Merge branch 'stable-3.1'
---
interface/web/admin/list/remote_user.list.php | 53 ++++++++++++++++++++++++++---------------------------
1 files changed, 26 insertions(+), 27 deletions(-)
diff --git a/interface/web/admin/list/remote_user.list.php b/interface/web/admin/list/remote_user.list.php
index 3636bef..7dc0fbf 100644
--- a/interface/web/admin/list/remote_user.list.php
+++ b/interface/web/admin/list/remote_user.list.php
@@ -7,13 +7,13 @@
$liste['table'] = 'remote_user';
// Index index field of the database table
-$liste['table_idx'] = 'userid';
+$liste['table_idx'] = 'remote_userid';
// Search Field Prefix
$liste['search_prefix'] = 'search_';
// Records per page
-$liste['records_per_page']= 15;
+$liste['records_per_page']= "15";
// Script File of the list
$liste['file'] = 'remote_user_list.php';
@@ -34,32 +34,31 @@
//****** Search fields
$liste['item'][] = array(
- 'field' => 'remote_userid',
- 'datatype' => 'VARCHAR',
- 'formtype' => 'SELECT',
- 'op' => '=',
- 'prefix' => '',
- 'suffix' => '',
- 'width' => '',
- 'datasource' => array(
- 'type' => 'SQL',
- 'querystring' => 'SELECT remote_userid,remote_username FROM remote_user WHERE {AUTHSQL} ORDER BY remote_username',
- 'keyfield' => 'remote_userid',
- 'valuefield' => 'remote_userid'
- ),
- 'value' => ''
- );
+ 'field' => 'remote_userid',
+ 'datatype' => 'VARCHAR',
+ 'formtype' => 'SELECT',
+ 'op' => '=',
+ 'prefix' => '',
+ 'suffix' => '',
+ 'width' => '',
+ 'datasource' => array(
+ 'type' => 'SQL',
+ 'querystring' => 'SELECT remote_userid,remote_username FROM remote_user WHERE {AUTHSQL} ORDER BY remote_username',
+ 'keyfield' => 'remote_userid',
+ 'valuefield' => 'remote_userid'
+ ),
+ 'value' => ''
+);
$liste['item'][] = array(
- 'field' => 'remote_username',
- 'datatype' => 'VARCHAR',
- 'formtype' => 'TEXT',
- 'op' => 'like',
- 'prefix' => '%',
- 'suffix' => '%',
- 'width' => '',
- 'value' => ''
- );
+ 'field' => 'remote_username',
+ 'datatype' => 'VARCHAR',
+ 'formtype' => 'TEXT',
+ 'op' => 'like',
+ 'prefix' => '%',
+ 'suffix' => '%',
+ 'width' => '',
+ 'value' => ''
+);
?>
-
--
Gitblit v1.9.1