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
ISPConfig
ISPConfig 3
Commits
be40ba3b
Commit
be40ba3b
authored
Jan 06, 2008
by
tbrehm
Browse files
Fixed some typos.
parent
b5a23a1b
Changes
3
Hide whitespace changes
Inline
Side-by-side
interface/web/client/templates/client_edit_limits.htm
View file @
be40ba3b
...
...
@@ -113,6 +113,7 @@
<td
class=
"frmText11"
width=
"280"
>
{tmpl_var name='limit_dns_record_txt'}:
</td>
<td
class=
"frmText11"
width=
"220"
><input
name=
"limit_dns_record"
type=
"text"
class=
"text"
value=
"{tmpl_var name='limit_dns_record'}"
size=
"10"
maxlength=
"10"
></td>
</tr>
<tmpl_if
name=
'is_reseller'
op=
'!='
value=
'1'
>
<tr>
<td><h2>
Clients
</h2></td>
</tr>
...
...
@@ -120,6 +121,7 @@
<td
class=
"frmText11"
width=
"280"
>
{tmpl_var name='limit_client_txt'}:
</td>
<td
class=
"frmText11"
width=
"220"
><input
name=
"limit_client"
type=
"text"
class=
"text"
value=
"{tmpl_var name='limit_client'}"
size=
"10"
maxlength=
"10"
></td>
</tr>
</tmpl_if>
<tr>
<td
class=
"frmText11"
>
</td>
<td
class=
"frmText11"
>
</td>
...
...
server/mods-enabled/client_module.inc.php
View file @
be40ba3b
<?php
/*
Copyright (c) 200
7
, Till Brehm, projektfarm Gmbh
Copyright (c) 200
8
, Till Brehm, projektfarm Gmbh
All rights reserved.
Redistribution and use in source and binary forms, with or without modification,
...
...
@@ -28,7 +28,7 @@ NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE OF THIS SOFTWARE,
EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE.
*/
class
web
_module
{
class
client
_module
{
var
$module_name
=
'client_module'
;
var
$class_name
=
'client_module'
;
...
...
server/plugins-enabled/mail_plugin.inc.php
View file @
be40ba3b
...
...
@@ -57,7 +57,7 @@ class mail_plugin {
global
$app
,
$conf
;
// Create the maildir, if it does not exist
if
(
!
is_dir
(
$data
[
'new'
][
'maildir'
])
{
if
(
!
is_dir
(
$data
[
'new'
][
'maildir'
])
)
{
mkdir
(
$data
[
'new'
][
'maildir'
]);
exec
(
'chown '
.
$mail_config
[
'mailuser_name'
]
.
':'
.
$mail_config
[
'mailuser_group'
]
.
' '
.
escapeshellcmd
(
$data
[
'new'
][
'maildir'
]));
$app
->
log
(
'Created Maildir: '
.
$data
[
'new'
][
'maildir'
],
LOGLEVEL_DEBUG
);
...
...
@@ -73,7 +73,7 @@ class mail_plugin {
$mail_config
=
$app
->
getconf
->
get_server_config
(
$conf
[
"server_id"
],
'mail'
);
// Create the maildir, if it does not exist
if
(
!
is_dir
(
$data
[
'new'
][
'maildir'
])
{
if
(
!
is_dir
(
$data
[
'new'
][
'maildir'
])
)
{
mkdir
(
$data
[
'new'
][
'maildir'
]);
exec
(
'chown '
.
$mail_config
[
'mailuser_name'
]
.
':'
.
$mail_config
[
'mailuser_group'
]
.
' '
.
escapeshellcmd
(
$data
[
'new'
][
'maildir'
]));
$app
->
log
(
'Created Maildir: '
.
$data
[
'new'
][
'maildir'
],
LOGLEVEL_DEBUG
);
...
...
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