tbrehm
2008-01-06 be40ba3b40e3778b94644143ab1da591f0ec3e55
Fixed some typos.
3 files modified
10 ■■■■■ changed files
interface/web/client/templates/client_edit_limits.htm 2 ●●●●● patch | view | raw | blame | history
server/mods-enabled/client_module.inc.php 4 ●●●● patch | view | raw | blame | history
server/plugins-enabled/mail_plugin.inc.php 4 ●●●● patch | view | raw | blame | history
interface/web/client/templates/client_edit_limits.htm
@@ -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">&nbsp;</td>
    <td class="frmText11">&nbsp;</td>
server/mods-enabled/client_module.inc.php
@@ -1,7 +1,7 @@
<?php
/*
Copyright (c) 2007, Till Brehm, projektfarm Gmbh
Copyright (c) 2008, Till Brehm, projektfarm Gmbh
All rights reserved.
Redistribution and use in source and binary forms, with or without modification,
@@ -28,7 +28,7 @@
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
@@ -57,7 +57,7 @@
        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 @@
        $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);