Changeset 1148

Show
Ignore:
Timestamp:
05/12/08 18:43:48 (2 months ago)
Author:
rats
Message:

* Fixed #1244: Use of uninitialized value in concatenation - in file engine/ispcp-htuser-mngr
* Updated German
* Copyright updated

Files:

Legend:

Unmodified
Added
Removed
Modified
Copied
Moved
  • trunk/CHANGELOG

    r1146 r1148  
    11ispCP ω 1.0.0 Changelog 
    22~~~~~~~~~~~~~~~~~~~~~~~~~~~~ 
     3 
     42008-05-12 Benedikt Heintel 
     5        - ENGINE: 
     6                * Fixed #1244: Use of uninitialized value in concatenation - in file engine/ispcp-htuser-mngr 
     7        - LANGUAGES: 
     8                * Updated German 
     9 
     102008-05-12 Thomas Wacker 
     11        - GUI: 
     12                * Fixed #1207: new order mail to reseller 
     13                * Fixed #1208: mailer from reseller not working 
     14                * Fixed #1209: Undefined index: mail_type_forward 
     15                * Fixed #1236: Setup Email headers not correct 
     16                * Fixed #1243: adding mail aborts 
    317 
    4182008-05-11 Benedikt Heintel 
  • trunk/engine/ispcp-db-passwd

    r595 r1148  
    44# Copyright (c) 2001-2006 by moleSoftware GmbH 
    55# http://www.molesoftware.com 
    6 # Copyright (c) 2006-2007 by isp Control Panel 
     6# Copyright (c) 2006-2008 by isp Control Panel 
    77# http://isp-control.net 
    88# 
  • trunk/engine/ispcp-htuser-mngr

    r1068 r1148  
    44# Copyright (c) 2001-2006 by moleSoftware GmbH 
    55# http://www.molesoftware.com 
    6 # Copyright (c) 2006-2007 by isp Control Panel 
     6# Copyright (c) 2006-2008 by isp Control Panel 
    77# http://isp-control.net 
    88# 
     
    664664 
    665665                $sql = <<SQL_QUERY; 
    666  
    667666                        select 
    668  
    669667                                ugroup, members 
    670  
    671668                        from 
    672  
    673669                                htaccess_groups 
    674  
    675670                        where 
    676  
    677671                                id = $group_id 
    678  
    679672                        and 
    680  
    681673                                dmn_id = $dmn_id 
    682674SQL_QUERY 
     
    703695 
    704696        my $htaccess_users_file_name = $main::cfg{'HTACCESS_USERS_FILE_NAME'}; 
    705  
    706697        my $htaccess_groups_file_name = $main::cfg{'HTACCESS_GROUPS_FILE_NAME'}; 
    707  
    708698        my $apache_www_dir = $main::cfg{'APACHE_WWW_DIR'}; 
    709  
    710699        my $htaccess_users_file = "$apache_www_dir/$dmn_name/$htaccess_users_file_name"; 
    711  
    712700        my $htaccess_groups_file = "$apache_www_dir/$dmn_name/$htaccess_groups_file_name"; 
    713  
    714701        my $htaccess_file = "$apache_www_dir/$dmn_name/$path/.htaccess"; 
    715  
    716702 
    717703        my $htaccess_content = 
     
    763749 
    764750        my $htaccess_users_file_name = $main::cfg{'HTACCESS_USERS_FILE_NAME'}; 
    765  
    766751        my $htaccess_groups_file_name = $main::cfg{'HTACCESS_GROUPS_FILE_NAME'}; 
    767  
    768752        my $apache_www_dir = $main::cfg{'APACHE_WWW_DIR'}; 
    769  
    770753        my $htaccess_users_file = "$apache_www_dir/$dmn_name/$htaccess_users_file_name"; 
    771  
    772754        my $htaccess_groups_file = "$apache_www_dir/$dmn_name/$htaccess_groups_file_name"; 
    773  
    774755        my $htaccess_file = "$apache_www_dir/$dmn_name/$path/.htaccess"; 
    775756 
     
    778759                my $group_id = $_; 
    779760 
    780 #               $sql = "select ugroup, members from htaccess_groups where id = $group_id and dmn_id = $dmn_id"; 
    781761                $sql = "select ugroup, members, count(htaccess.id) as c from htaccess_groups left join htaccess on htaccess.group_id=htaccess_groups.id where htaccess_groups.id = $group_id and htaccess_groups.dmn_id = $dmn_id group by htaccess.group_id"; 
    782762 
     
    861841 
    862842                                        } 
    863  
    864843                                } 
    865  
    866844                        } 
    867  
    868845                } 
    869  
    870  
    871  
    872846        } 
    873847 
     
    888862        push_el(\@main::el, 'htuser_mngr_engine()', 'Starting...'); 
    889863 
    890         my $sql
     864        my $sql = undef
    891865 
    892866        # 
     
    895869 
    896870        $sql = <<SQL_QUERY; 
    897  
    898871                select 
    899  
    900872                        t1.dmn_id, 
    901873                        t2.domain_name, 
     
    907879                        t2.domain_uid, 
    908880                        t2.domain_gid 
    909  
    910881                from 
    911  
    912882                        htaccess as t1, 
    913883                        domain as t2 
    914  
    915884                where 
    916  
    917885                        t1.id = $main::htuser_task_id 
    918  
    919886                and 
    920  
    921887                        t1.user_id != 0 
    922  
    923888                and 
    924  
    925889                        t1.dmn_id = t2.domain_id 
    926  
    927890SQL_QUERY 
    928891 
     
    940903 
    941904                select 
    942  
    943905                        t1.dmn_id, 
    944906                        t2.domain_name, 
     
    950912                        t2.domain_uid, 
    951913                        t2.domain_gid 
    952  
    953914                from 
    954  
    955915                        htaccess as t1, 
    956916                        domain as t2 
    957  
    958917                where 
    959  
    960918                        t1.id = $main::htuser_task_id 
    961  
    962919                and 
    963  
    964920                        t1.group_id != 0 
    965  
    966921                and 
    967  
    968922                        t1.dmn_id = t2.domain_id 
    969923 
     
    11731127        } 
    11741128 
    1175 # see if user or group data has changed (password - change ?) 
    1176 # first the users 
    1177 
     1129        # see if user or group data has changed (password - change ?) first the users 
     1130 
    11781131                        my $sql_id = "select t1.dmn_id,t2.domain_name  from htaccess as t1,domain as t2 where t1.id = $main::htuser_task_id and t1.dmn_id = t2.domain_id"; 
    11791132 
     
    12531206                                        } 
    12541207 
    1255 # now the groups follow 
     1208       # now the groups follow 
    12561209                        my $sql_gid = "select t1.dmn_id,t2.domain_name  from htaccess as t1,domain as t2 where t1.id = $main::htuser_task_id and t1.dmn_id = t2.domain_id"; 
    12571210 
     
    13521305                                        push_el(\@main::el, 'htuser-usermanagement()', 'Ending...'); 
    13531306                                } 
    1354 # 
    1355 # 
    1356 # 
    1357  
    1358  
    13591307 
    13601308        sleep(1); 
     
    14031351 
    14041352exit 0; 
    1405  
  • trunk/engine/ispcp-rqst-mngr

    r970 r1148  
    44# Copyright (c) 2001-2006 by moleSoftware GmbH 
    55# http://www.molesoftware.com 
    6 # Copyright (c) 2006-2007 by isp Control Panel 
     6# Copyright (c) 2006-2008 by isp Control Panel 
    77# http://isp-control.net 
    88# 
  • trunk/engine/ispcp-serv-mngr

    r765 r1148  
    44# Copyright (c) 2001-2006 by moleSoftware GmbH 
    55# http://www.molesoftware.com 
    6 # Copyright (c) 2006-2007 by isp Control Panel 
     6# Copyright (c) 2006-2008 by isp Control Panel 
    77# http://isp-control.net 
    88# 
  • trunk/engine/ispcp_common_code.pl

    r1057 r1148  
    44# Copyright (c) 2001-2006 by moleSoftware GmbH 
    55# http://www.molesoftware.com 
    6 # Copyright (c) 2006-2007 by isp Control Panel 
     6# Copyright (c) 2006-2008 by isp Control Panel 
    77# http://isp-control.net 
    88# 
  • trunk/engine/setup/reset-setup

    r1094 r1148  
    22 
    33# ispCP ω (OMEGA) a Virtual Hosting Control Panel 
    4 # Copyright (c) 2006-2007 by ispCP | http://isp-control.net 
     4# Copyright (c) 2006-2008 by ispCP | http://isp-control.net 
    55# 
    66# 
  • trunk/engine/tools/ispcp-httpd-logs-mngr

    r595 r1148  
    44# Copyright (c) 2001-2006 by moleSoftware GmbH 
    55# http://www.molesoftware.com 
    6 # Copyright (c) 2006-2007 by isp Control Panel 
     6# Copyright (c) 2006-2008 by isp Control Panel 
    77# http://isp-control.net 
    88# 
  • trunk/engine/traffic/ispcp-srv-traff

    r890 r1148  
    44# Copyright (c) 2001-2006 by moleSoftware GmbH 
    55# http://www.molesoftware.com 
    6 # Copyright (c) 2006-2007 by isp Control Panel 
     6# Copyright (c) 2006-2008 by isp Control Panel 
    77# http://isp-control.net 
    88# 
  • trunk/engine/traffic/ispcp-vrl-traff-SUSE

    r1068 r1148  
    44# Copyright (c) 2001-2006 by moleSoftware GmbH 
    55# http://www.molesoftware.com 
    6 # Copyright (c) 2006-2007 by isp Control Panel 
     6# Copyright (c) 2006-2008 by isp Control Panel 
    77# http://isp-control.net 
    88# 
  • trunk/engine/traffic/ispcp-vrl-traff-correction

    r1057 r1148  
    44# Copyright (c) 2001-2006 by moleSoftware GmbH 
    55# http://www.molesoftware.com 
    6 # Copyright (c) 2006-2007 by isp Control Panel 
     6# Copyright (c) 2006-2008 by isp Control Panel 
    77# http://isp-control.net 
    88# 
  • trunk/gui/admin/change_status.php

    r661 r1148  
    44 * 
    55 *  @copyright  2001-2006 by moleSoftware GmbH 
    6  *  @copyright  2006-2007 by ispCP | http://isp-control.net 
     6 *  @copyright  2006-2008 by ispCP | http://isp-control.net 
    77 *  @link               http://isp-control.net 
    88 *  @author             ispCP Team (2007) 
  • trunk/gui/admin/change_user_interface.php

    r781 r1148  
    44 * 
    55 * @copyright   2001-2006 by moleSoftware GmbH 
    6  * @copyright   2006-2007 by ispCP | http://isp-control.net 
     6 * @copyright   2006-2008 by ispCP | http://isp-control.net 
    77 * @version     SVN: $ID$ 
    88 * @link                http://isp-control.net 
  • trunk/gui/admin/delete_ip.php

    r809 r1148  
    44 * 
    55 * @copyright   2001-2006 by moleSoftware GmbH 
    6  * @copyright   2006-2007 by ispCP | http://isp-control.net 
     6 * @copyright   2006-2008 by ispCP | http://isp-control.net 
    77 * @version     SVN: $ID$ 
    88 * @link                http://isp-control.net 
  • trunk/gui/admin/delete_lang.php

    r661 r1148  
    44 * 
    55 *  @copyright  2001-2006 by moleSoftware GmbH 
    6  *  @copyright  2006-2007 by ispCP | http://isp-control.net 
     6 *  @copyright  2006-2008 by ispCP | http://isp-control.net 
    77 *  @link               http://isp-control.net 
    88 *  @author             ispCP Team (2007) 
  • trunk/gui/admin/delete_ticket.php

    r661 r1148  
    44 * 
    55 *  @copyright  2001-2006 by moleSoftware GmbH 
    6  *  @copyright  2006-2007 by ispCP | http://isp-control.net 
     6 *  @copyright  2006-2008 by ispCP | http://isp-control.net 
    77 *  @link               http://isp-control.net 
    88 *  @author             ispCP Team (2007) 
  • trunk/gui/admin/delete_user.php

    r661 r1148  
    44 * 
    55 *  @copyright  2001-2006 by moleSoftware GmbH 
    6  *  @copyright  2006-2007 by ispCP | http://isp-control.net 
     6 *  @copyright  2006-2008 by ispCP | http://isp-control.net 
    77 *  @link               http://isp-control.net 
    88 *  @author             ispCP Team (2007) 
  • trunk/gui/admin/dhp.php

    r661 r1148  
    44 * 
    55 *  @copyright  2001-2006 by moleSoftware GmbH 
    6  *  @copyright  2006-2007 by ispCP | http://isp-control.net 
     6 *  @copyright  2006-2008 by ispCP | http://isp-control.net 
    77 *  @link               http://isp-control.net 
    88 *  @author             ispCP Team (2007) 
  • trunk/gui/admin/edit_admin.php

    r1014 r1148  
    44 * 
    55 * @copyright   2001-2006 by moleSoftware GmbH 
    6  * @copyright   2006-2007 by ispCP | http://isp-control.net 
     6 * @copyright   2006-2008 by ispCP | http://isp-control.net 
    77 * @link                http://isp-control.net 
    88 * @author              ispCP Team (2007) 
  • trunk/gui/client/change_user_interface.php

    r776 r1148  
    44 * 
    55 *  @copyright  2001-2006 by moleSoftware GmbH 
    6  *  @copyright  2006-2007 by ispCP | http://isp-control.net 
     6 *  @copyright  2006-2008 by ispCP | http://isp-control.net 
    77 *  @link               http://isp-control.net 
    88 *  @author             ispCP Team (2007) 
  • trunk/gui/client/cronjobs_add.php

    r1014 r1148  
    44 * 
    55 * @copyright 2001-2006 by moleSoftware GmbH 
    6  * @copyright 2006-2007 by ispCP | http://isp-control.net 
     6 * @copyright  2006-2008 by ispCP | http://isp-control.net 
    77 * @link http://isp-control.net 
    88 * @author ispCP Team (2007) 
  • trunk/gui/client/delete_als.php

    r767 r1148  
    44 * 
    55 *  @copyright  2001-2006 by moleSoftware GmbH 
    6  *  @copyright  2006-2007 by ispCP | http://isp-control.net 
     6 *  @copyright  2006-2008 by ispCP | http://isp-control.net 
    77 *  @link               http://isp-control.net 
    88 *  @author             ispCP Team (2007) 
  • trunk/gui/client/delete_als_order.php

    r811 r1148  
    44 * 
    55 * @copyright   2001-2006 by moleSoftware GmbH 
    6  * @copyright   2006-2007 by ispCP | http://isp-control.net 
     6 * @copyright   2006-2008 by ispCP | http://isp-control.net 
    77 * @version     SVN: $ID$ 
    88 * @link                http://isp-control.net 
  • trunk/gui/client/delete_catchall.php

    r662 r1148  
    44 * 
    55 *  @copyright  2001-2006 by moleSoftware GmbH 
    6  *  @copyright  2006-2007 by ispCP | http://isp-control.net 
     6 *  @copyright  2006-2008 by ispCP | http://isp-control.net 
    77 *  @link               http://isp-control.net 
    88 *  @author             ispCP Team (2007) 
  • trunk/gui/client/delete_ftp_acc.php

    r662 r1148  
    44 * 
    55 *  @copyright  2001-2006 by moleSoftware GmbH 
    6  *  @copyright  2006-2007 by ispCP | http://isp-control.net 
     6 *  @copyright  2006-2008 by ispCP | http://isp-control.net 
    77 *  @link               http://isp-control.net 
    88 *  @author             ispCP Team (2007) 
  • trunk/gui/client/delete_sql_database.php

    r680 r1148  
    44 * 
    55 *  @copyright  2001-2006 by moleSoftware GmbH 
    6  *  @copyright  2006-2007 by ispCP | http://isp-control.net 
     6 *  @copyright  2006-2008 by ispCP | http://isp-control.net 
    77 *  @link               http://isp-control.net 
    88 *  @author             ispCP Team (2007) 
  • trunk/gui/client/delete_sub.php

    r662 r1148  
    44 * 
    55 *  @copyright  2001-2006 by moleSoftware GmbH 
    6  *  @copyright  2006-2007 by ispCP | http://isp-control.net 
     6 *  @copyright  2006-2008 by ispCP | http://isp-control.net 
    77 *  @link               http://isp-control.net 
    88 *  @author             ispCP Team (2007) 
  • trunk/gui/client/delete_ticket.php

    r662 r1148  
    44 * 
    55 *  @copyright  2001-2006 by moleSoftware GmbH 
    6  *  @copyright  2006-2007 by ispCP | http://isp-control.net 
     6 *  @copyright  2006-2008 by ispCP | http://isp-control.net 
    77 *  @link               http://isp-control.net 
    88 *  @author             ispCP Team (2007) 
  • trunk/gui/client/login_pma.php

    r821 r1148  
    44 * 
    55 * @copyright   2001-2006 by moleSoftware GmbH 
    6  * @copyright   2006-2007 by ispCP | http://isp-control.net 
     6 * @copyright   2006-2008 by ispCP | http://isp-control.net 
    77 * @link                http://isp-control.net 
    88 * @author              ispCP Team (2007) 
  • trunk/gui/client/protect_delete.php

    r662 r1148  
    44 * 
    55 *  @copyright  2001-2006 by moleSoftware GmbH 
    6  *  @copyright  2006-2007 by ispCP | http://isp-control.net 
     6 *  @copyright  2006-2008 by ispCP | http://isp-control.net 
    77 *  @link               http://isp-control.net 
    88 *  @author             ispCP Team (2007) 
  • trunk/gui/client/puser_delete.php

    r662 r1148  
    44 * 
    55 *  @copyright  2001-2006 by moleSoftware GmbH 
    6  *  @copyright  2006-2007 by ispCP | http://isp-control.net 
     6 *  @copyright  2006-2008 by ispCP | http://isp-control.net 
    77 *  @link               http://isp-control.net 
    88 *  @author             ispCP Team (2007) 
  • trunk/gui/client/puser_gdelete.php

    r662 r1148  
    44 * 
    55 *  @copyright  2001-2006 by moleSoftware GmbH 
    6  *  @copyright  2006-2007 by ispCP | http://isp-control.net 
     6 *  @copyright  2006-2008 by ispCP | http://isp-control.net 
    77 *  @link               http://isp-control.net 
    88 *  @author             ispCP Team (2007) 
  • trunk/gui/client/sql_delete_user.php

    r728 r1148  
    44 * 
    55 *  @copyright  2001-2006 by moleSoftware GmbH 
    6  *  @copyright  2006-2007 by ispCP | http://isp-control.net 
     6 *  @copyright  2006-2008 by ispCP | http://isp-control.net 
    77 *  @link               http://isp-control.net 
    88 *  @author             ispCP Team (2007) 
  • trunk/gui/client/unprotect_it.php

    r662 r1148  
    44 * 
    55 *  @copyright  2001-2006 by moleSoftware GmbH 
    6  *  @copyright  2006-2007 by ispCP | http://isp-control.net 
     6 *  @copyright  2006-2008 by ispCP | http://isp-control.net 
    77 *  @link               http://isp-control.net 
    88 *  @author             ispCP Team (2007) 
  • trunk/gui/include/calc-functions.php

    r764 r1148  
    44 * 
    55 *  @copyright  2001-2006 by moleSoftware GmbH 
    6  *  @copyright  2006-2007 by ispCP | http://isp-control.net 
     6 *  @copyright  2006-2008 by ispCP | http://isp-control.net 
    77 *  @link               http://isp-control.net 
    88 *  @author             ispCP Team (2007) 
  • trunk/gui/include/class.pTemplate.php

    r1144 r1148  
    44 * 
    55 * @copyright   2001-2006 by moleSoftware GmbH 
    6  * @copyright   2006-2007 by ispCP | http://isp-control.net 
     6 * @copyright   2006-2008 by ispCP | http://isp-control.net 
    77 * @version     SVN: $ID$ 
    88 * @link                http://isp-control.net 
  • trunk/gui/include/date-functions.php

    r766 r1148  
    44 * 
    55 *  @copyright  2001-2006 by moleSoftware GmbH 
    6  *  @copyright  2006-2007 by ispCP | http://isp-control.net 
     6 *  @copyright  2006-2008 by ispCP | http://isp-control.net 
    77 *  @link               http://isp-control.net 
    88 *  @author             ispCP Team (2007) 
  • trunk/gui/include/debug.php

    r641 r1148  
    44 * 
    55 *  @copyright  2001-2006 by moleSoftware GmbH 
    6  *  @copyright  2006-2007 by ispCP | http://isp-control.net 
     6 *  @copyright  2006-2008 by ispCP | http://isp-control.net 
    77 *  @link               http://isp-control.net 
    88 *  @author             ispCP Team (2007) 
  • trunk/gui/include/emailtpl-functions.php

    r881 r1148  
    44 * 
    55 *  @copyright  2001-2006 by moleSoftware GmbH 
    6  *  @copyright  2006-2007 by ispCP | http://isp-control.net 
     6 *  @copyright  2006-2008 by ispCP | http://isp-control.net 
    77 *  @link               http://isp-control.net 
    88 *  @author             ispCP Team (2007) 
  • trunk/gui/include/layout-functions.php

    r1005 r1148  
    44 * 
    55 * @copyright   2001-2006 by moleSoftware GmbH 
    6  * @copyright   2006-2007 by ispCP | http://isp-control.net 
     6 * @copyright   2006-2008 by ispCP | http://isp-control.net 
    77 * @link                http://isp-control.net 
    88 * @author              ispCP Team (2007) 
  • trunk/gui/include/login-functions.php

    r1093 r1148  
    44 * 
    55 * @copyright   2001-2006 by moleSoftware GmbH 
    6  * @copyright   2006-2007 by ispCP | http://isp-control.net 
     6 * @copyright   2006-2008 by ispCP | http://isp-control.net 
    77 * @version     SVN: $ID$ 
    88 * @link                http://isp-control.net 
  • trunk/gui/include/login.php

    r1092 r1148  
    44 * 
    55 * @copyright   2001-2006 by moleSoftware GmbH 
    6  * @copyright   2006-2007 by ispCP | http://isp-control.net 
     6 * @copyright   2006-2008 by ispCP | http://isp-control.net 
    77 * @version     SVN: $ID$ 
    88 * @link                http://isp-control.net 
  • trunk/gui/include/lostpassword-functions.php

    r888 r1148  
    44 * 
    55 * @copyright   2001-2006 by moleSoftware GmbH 
    6  * @copyright   2006-2007 by ispCP | http://isp-control.net 
     6 * @copyright   2006-2008 by ispCP | http://isp-control.net 
    77 * @link                http://isp-control.net 
    88 * @author              ispCP Team (2007) 
  • trunk/gui/include/spGzip.php

    r593 r1148  
    44 * 
    55 *  @copyright  2005 by Oliver Sperke | http://sperke.net 
    6  *  @copyright  2006-2007 by ispCP | http://isp-control.net 
     6 *  @copyright  2006-2008 by ispCP | http://isp-control.net 
    77 *  @link               http://isp-control.net 
    88 *  @author             ispCP Team (2007) 
  • trunk/gui/include/sql.php

    r1073 r1148  
    44 * 
    55 * @copyright 2001-2006 by moleSoftware GmbH 
    6  * @copyright 2006-2008 by ispCP | http://isp-control.net 
     6 * @copyright  2006-2008 by ispCP | http://isp-control.net 
    77 * @version SVN: $ID$ 
    88 * @link http://isp-control.net 
  • trunk/gui/reseller/change_status.php

    r663 r1148  
    44 * 
    55 *  @copyright  2001-2006 by moleSoftware GmbH 
    6  *  @copyright  2006-2007 by ispCP | http://isp-control.net 
     6 *  @copyright  2006-2008 by ispCP | http://isp-control.net 
    77 *  @link               http://isp-control.net 
    88 *  @author             ispCP Team (2007) 
  • trunk/gui/reseller/change_user_interface.php

    r776 r1148  
    44 * 
    55 *  @copyright  2001-2006 by moleSoftware GmbH 
    6  *  @copyright  2006-2007 by ispCP | http://isp-control.net 
     6 *  @copyright  2006-2008 by ispCP | http://isp-control.net 
    77 *  @link               http://isp-control.net 
    88 *  @author             ispCP Team (2007) 
  • trunk/gui/reseller/domain_statistics.php

    r1105 r1148  
    44 * 
    55 *  @copyright  2001-2006 by moleSoftware GmbH 
    6  *  @copyright  2006-2007 by ispCP | http://isp-control.net 
     6 *  @copyright  2006-2008 by ispCP | http://isp-control.net 
    77 *  @link               http://isp-control.net 
    88 *  @author             ispCP Team (2007) 
  • trunk/gui/reseller/druser.php

    r663 r1148  
    44 * 
    55 *  @copyright  2001-2006 by moleSoftware GmbH 
    6  *  @copyright  2006-2007 by ispCP | http://isp-control.net 
     6 *  @copyright  2006-2008 by ispCP | http://isp-control.net 
    77 *  @link               http://isp-control.net 
    88 *  @author             ispCP Team (2007) 
  • trunk/gui/reseller/orders_delete.php

    r663 r1148  
    44 * 
    55 *  @copyright  2001-2006 by moleSoftware GmbH 
    6  *  @copyright  2006-2007 by ispCP | http://isp-control.net 
     6 *  @copyright  2006-2008 by ispCP | http://isp-control.net 
    77 *  @link               http://isp-control.net 
    88 *  @author             ispCP Team (2007) 
  • trunk/gui/themes/omega_original/css/tooltip.js

    r707 r1148  
    22* ispCP ω (OMEGA) a Virtual Hosting Control System 
    33* 
    4 * @copyright 2006-2007 by ispCP | http://isp-control.net 
     4* @copyright   2006-2008 by ispCP | http://isp-control.net 
    55* @link http://isp-control.net 
    66* @author ispCP Team (2007) 
  • trunk/language-files/languages/german_germany

    r1145