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
328e6ce7
Commit
328e6ce7
authored
Jan 28, 2010
by
tbrehm
Browse files
Fixed: FS#992 - No additional template selected
parent
a3014ea9
Changes
2
Hide whitespace changes
Inline
Side-by-side
interface/web/client/templates/client_edit_limits.htm
View file @
328e6ce7
...
...
@@ -28,7 +28,7 @@
<select
name=
"tpl_add_select"
id=
"tpl_add_select"
class=
"selectInput"
>
{tmpl_var name='tpl_add_select'}
</select>
<
span
id=
"template_additional_list"
>
{tmpl_var name='template_additional_list'}
</
span
>
<
div
id=
"template_additional_list"
>
<br
/><br
/>
{tmpl_var name='template_additional_list'}
</
div
>
<input
type=
"hidden"
id=
"template_additional"
name=
"template_additional"
value=
"{tmpl_var name='template_additional'}"
>
</div>
<div
class=
"ctrlHolder"
>
...
...
interface/web/js/scrigo.js.php
View file @
328e6ce7
...
...
@@ -460,11 +460,12 @@ function pass_contains(pass, check) {
function addAdditionalTemplate(){
var tpl_add = document.getElementById('template_additional').value;
if(tpl_add != '') {
var tpl_list = document.getElementById('template_additional_list').innerHTML;
var addTemplate = document.getElementById('tpl_add_select').value.split('|',2);
var addTplId = addTemplate[0];
var addTplText = addTemplate[1];
if(addTplId > 0) {
var newVal = tpl_add + '/' + addTplId + '/';
newVal = newVal.replace('//', '/');
var newList = tpl_list + '
<br>
' + addTplText;
...
...
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