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
Zvonimir
ISPConfig 3
Commits
9138831c
Commit
9138831c
authored
Mar 05, 2010
by
tbrehm
Browse files
- Fixed a problem with form type currency.
- Added a missing language string for the website form.
parent
9ac2fa3f
Changes
2
Hide whitespace changes
Inline
Side-by-side
interface/lib/classes/tform.inc.php
View file @
9138831c
...
...
@@ -191,7 +191,7 @@ class tform {
break
;
case
'CURRENCY'
:
$new_record
[
$key
]
=
number_format
(
$record
[
$key
],
2
,
','
,
''
);
$new_record
[
$key
]
=
number_format
(
(
double
)
$record
[
$key
],
2
,
','
,
''
);
break
;
default
:
...
...
interface/web/sites/lib/lang/en_web_domain.lng
View file @
9138831c
...
...
@@ -56,4 +56,5 @@ $wb["ssl_organistaion_unit_error_regex"] = 'Invalid SSL Organisation Unit. Valid
$wb
[
"ssl_country_error_regex"
]
=
'Invalid SSL Country. Valid characters are: A-Z'
;
$wb
[
"limit_traffic_quota_free_txt"
]
=
'Max. available Traffic Quota'
;
$wb
[
"redirect_error_regex"
]
=
'Invalid redirect path. Valid redirects are for example: /test/ or http://www.domain.tld/test/'
;
$wb
[
"php_open_basedir_txt"
]
=
'PHP open_basedir'
;
?>
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