1
0
mirror of https://github.com/e107inc/e107.git synced 2025-04-21 13:11:52 +02:00

Remove type=array

This commit is contained in:
Cameron 2019-02-01 13:08:25 -08:00
parent f16cae9880
commit f934976ac5

View File

@ -278,7 +278,7 @@ class plugin_blank_admin_ui extends e_admin_ui
'pref_type' => array('title'=> 'type', 'type'=>'text', 'data' => 'string', 'validate' => true),
'pref_folder' => array('title'=> 'folder', 'type' => 'boolean', 'data' => 'integer'),
'pref_name' => array('title'=> 'name', 'type' => 'text', 'data' => 'string', 'validate' => 'regex', 'rule' => '#^[\w]+$#i', 'help' => 'allowed characters are a-zA-Z and underscore'),
'pref_classes' => array('title'=> 'classes', 'type' => 'userclasses', 'data' => 'array')
'pref_classes' => array('title'=> 'classes', 'type' => 'userclasses', 'inline'=>true,)
);