Skip to content
GitLab
Projects
Groups
Snippets
/
Help
Help
Support
Community forum
Keyboard shortcuts
?
Submit feedback
Contribute to GitLab
Sign in / Register
Toggle navigation
Menu
Open sidebar
François GrizzlyDev
ISPConfig 3
Commits
6a8a67f0
Commit
6a8a67f0
authored
Nov 20, 2013
by
Till Brehm
Browse files
Fixed missing save and cancel button texts in reseller and client form.
parent
63d69244
Changes
2
Hide whitespace changes
Inline
Side-by-side
interface/web/client/client_edit.php
View file @
6a8a67f0
...
...
@@ -172,6 +172,7 @@ class page_action extends tform_actions {
$app
->
tpl
->
setVar
(
'template_additional_list'
,
$text
);
$app
->
tpl
->
setVar
(
'app_module'
,
'client'
);
//* Set the 'customer no' default value
if
(
$this
->
id
==
0
)
{
...
...
@@ -210,6 +211,9 @@ class page_action extends tform_actions {
}
}
}
$app
->
tpl
->
setVar
(
'btn_save_txt'
,
$app
->
lng
(
'btn_save_txt'
));
$app
->
tpl
->
setVar
(
'btn_cancel_txt'
,
$app
->
lng
(
'btn_cancel_txt'
));
parent
::
onShowEnd
();
...
...
interface/web/client/reseller_edit.php
View file @
6a8a67f0
...
...
@@ -158,6 +158,9 @@ class page_action extends tform_actions {
$app
->
db
->
datalogUpdate
(
'sys_ini'
,
"config = '"
.
$app
->
db
->
quote
(
$system_config_str
)
.
"'"
,
'sysini_id'
,
1
);
}
}
$app
->
tpl
->
setVar
(
'btn_save_txt'
,
$app
->
lng
(
'btn_save_txt'
));
$app
->
tpl
->
setVar
(
'btn_cancel_txt'
,
$app
->
lng
(
'btn_cancel_txt'
));
parent
::
onShowEnd
();
...
...
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