Changeset 474

Show
Ignore:
Timestamp:
04/11/07 02:19:30 (2 years ago)
Author:
malte
Message:

--

Files:

Legend:

Unmodified
Added
Removed
Modified
Copied
Moved
  • trunk/gui/BSDmakefile

    r154 r474  
    1 # VHCS(tm) - Virtual Hosting Control System 
     1# ISPCP(tm) - Virtual Hosting Control System 
    22# Copyright (c) 2001-2004 by moleSoftware GmbH 
    33# http://www.molesoftware.com 
     
    2222# 
    2323# 
    24 # The VHCS Home Page is at: 
     24# The ISPCP Home Page is at: 
    2525# 
    26 #    http://www.vhcs.net 
     26#    http://www.isp-control.net 
    2727 
    2828.include <../Makefile.inc> 
  • trunk/gui/Makefile

    r308 r474  
    1 # VHCS(tm) - Virtual Hosting Control System 
     1# ISPCP(tm) - Virtual Hosting Control System 
    22# Copyright (c) 2001-2004 by moleSoftware GmbH 
    33# http://www.molesoftware.com 
     
    2222# 
    2323# 
    24 # The VHCS Home Page is at: 
     24# The ISPCP Home Page is at: 
    2525# 
    26 #    http://www.vhcs.net 
     26#    http://www.isp-control.net 
    2727 
    2828 
  • trunk/gui/admin/add_reseller.php

    r441 r474  
    11<?php 
    22/** 
    3  *  VHCS ω (OMEGA) - Virtual Hosting Control System | Omega Version 
     3 *  ispCP (OMEGA) - Virtual Hosting Control System | Omega Version 
    44 * 
    55 *  @copyright  2001-2006 by moleSoftware GmbH 
    66 *  @copyright  2006-2007 by ispCP | http://isp-control.net 
    77 *  @link               http://isp-control.net 
    8  *  @author             VHCS Team, Benedikt Heintel (2007) 
     8 *  @author             ispCP Team (2007) 
    99 * 
    1010 *  @license 
     
    1818 **/ 
    1919 
    20 include '../include/vhcs-lib.php'; 
     20include '../include/ispcp-lib.php'; 
    2121 
    2222check_login(); 
     
    3939$tpl -> assign( 
    4040                array( 
    41                         'TR_ADMIN_ADD_RESELLER_PAGE_TITLE' => tr('VHCS - Admin/Manage users/Add reseller'), 
     41                        'TR_ADMIN_ADD_RESELLER_PAGE_TITLE' => tr('ispCP - Admin/Manage users/Add reseller'), 
    4242                        'THEME_COLOR_PATH' => "../themes/$theme_color", 
    4343                        'THEME_CHARSET' => tr('encoding'), 
    4444                        'ISP_LOGO' => get_logo($_SESSION['user_id']), 
    45                         'VHCS_LICENSE' => $cfg['VHCS_LICENSE'] 
     45                        'ISPCP_LICENSE' => $cfg['ISPCP_LICENSE'] 
    4646                     ) 
    4747              ); 
     
    453453        return false; 
    454454    } 
    455     if (!vhcs_limit_check($_POST['nreseller_max_domain_cnt'], 999) || $_POST['nreseller_max_domain_cnt'] == -1) { 
     455    if (!ispcp_limit_check($_POST['nreseller_max_domain_cnt'], 999) || $_POST['nreseller_max_domain_cnt'] == -1) { 
    456456 
    457457        set_page_message( tr("Incorrect max domain count or syntax!")); 
     
    459459        return false; 
    460460    } 
    461     if (!vhcs_limit_check($_POST['nreseller_max_subdomain_cnt'], 999) || $_POST['nreseller_max_subdomain_cnt'] == -1) { 
     461    if (!ispcp_limit_check($_POST['nreseller_max_subdomain_cnt'], 999) || $_POST['nreseller_max_subdomain_cnt'] == -1) { 
    462462 
    463463        set_page_message( tr("Incorrect max subdomain count or syntax!")); 
     
    466466 
    467467    } 
    468     if (!vhcs_limit_check($_POST['nreseller_max_alias_cnt'], 999) || $_POST['nreseller_max_alias_cnt'] == -1) { 
     468    if (!ispcp_limit_check($_POST['nreseller_max_alias_cnt'], 999) || $_POST['nreseller_max_alias_cnt'] == -1) { 
    469469 
    470470        set_page_message(tr('Incorrect max alias count or syntax!'));