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
f150f05b
Commit
f150f05b
authored
Sep 16, 2010
by
tbrehm
Browse files
Implemented: FS#1280 - Dashboard and remote
parent
b6912ffe
Changes
2
Hide whitespace changes
Inline
Side-by-side
interface/web/client/client_edit.php
View file @
f150f05b
...
...
@@ -143,7 +143,7 @@ class page_action extends tform_actions {
$password
=
$app
->
db
->
quote
(
$this
->
dataRecord
[
"password"
]);
$modules
=
$conf
[
'interface_modules_enabled'
];
if
(
$this
->
dataRecord
[
"limit_client"
]
>
0
)
$modules
.
=
',client'
;
$startmodule
=
'mail
'
;
$startmodule
=
(
stristr
(
$modules
,
'dashboard'
))
?
'dashboard'
:
'client
'
;
$usertheme
=
$app
->
db
->
quote
(
$this
->
dataRecord
[
"usertheme"
]);
$type
=
'user'
;
$active
=
1
;
...
...
interface/web/client/reseller_edit.php
View file @
f150f05b
...
...
@@ -144,7 +144,7 @@ class page_action extends tform_actions {
$username
=
$app
->
db
->
quote
(
$this
->
dataRecord
[
"username"
]);
$password
=
$app
->
db
->
quote
(
$this
->
dataRecord
[
"password"
]);
$modules
=
$conf
[
'interface_modules_enabled'
]
.
',client'
;
$startmodule
=
'client'
;
$startmodule
=
(
stristr
(
$modules
,
'dashboard'
))
?
'dashboard'
:
'client'
;
$usertheme
=
$app
->
db
->
quote
(
$this
->
dataRecord
[
"usertheme"
]);
$type
=
'user'
;
$active
=
1
;
...
...
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