Skip to content
GitLab
Projects
Groups
Snippets
/
Help
Help
Support
Community forum
Keyboard shortcuts
?
Submit feedback
Contribute to GitLab
Register
Sign in
Toggle navigation
Menu
Open sidebar
Guilherme Filippo
ISPConfig 3
Commits
f95b0e3d
Commit
f95b0e3d
authored
Sep 17, 2010
by
tbrehm
Browse files
Fixed: FS#1284 - Normal users cannot select a recipient under Help > Support > Send message.
parent
8d3061f0
Changes
1
Hide whitespace changes
Inline
Side-by-side
interface/web/help/form/support_message.tform.php
View file @
f95b0e3d
...
...
@@ -55,14 +55,14 @@ $form["tabs"]['message'] = array (
'formtype'
=>
'SELECT'
,
'default'
=>
''
,
'datasource'
=>
array
(
'type'
=>
'SQL'
,
'querystring'
=>
'SELECT userid,username FROM sys_user WHERE {AUTHSQL} ORDER BY username'
,
'querystring'
=>
'SELECT userid,username FROM sys_user WHERE
userid != 1 AND
{AUTHSQL} ORDER BY username'
,
'keyfield'
=>
'userid'
,
'valuefield'
=>
'username'
),
'validators'
=>
array
(
0
=>
array
(
'type'
=>
'ISINT'
,
'errmsg'
=>
'recipient_id_is_not_integer'
),
),
'value'
=>
''
'value'
=>
array
(
1
=>
'Administrator'
)
),
'sender_id'
=>
array
(
'datatype'
=>
'INTEGER'
,
...
...
Write
Preview
Supports
Markdown
0%
Try again
or
attach a new file
.
Cancel
You are about to add
0
people
to the discussion. Proceed with caution.
Finish editing this message first!
Cancel
Please
register
or
sign in
to comment