Changeset 3900


Ignore:
Timestamp:
09/20/11 13:01:40 (8 months ago)
Author:
ShadowJumper
Message:

*[ENGINE] Fixed Setup was broken

Location:
trunk
Files:
1 added
3 edited

Legend:

Unmodified
Added
Removed
  • trunk/CHANGELOG

    r3898 r3900  
    55        - TOOLS: 
    66                * Updated phpMyAdmin to version 3.4.5 
     7        - ENGINE: 
     8                * Fixed Setup was broken 
    79 
    8102011-09-19 Markus Szywon 
  • trunk/engine/ispcp_common_code.pl

    r3871 r3900  
    126126 
    127127        map {s/'/\\'/g, chop} 
    128                 my $db_pass_key = gen_sys_rand_num(32, ''), 
    129                 my $db_pass_iv = gen_sys_rand_num(8, ''); 
     128                my $db_pass_key = generateRandomChars(32, ''), 
     129                my $db_pass_iv = generateRandomChars(8, ''); 
    130130 
    131131        $main::db_pass_key = $db_pass_key; 
  • trunk/engine/ispcp_common_methods.pl

    r3871 r3900  
    11#!/usr/bin/perl 
    22 
    3 =head1 NAME 
    4  
    5 isPCP Common Methods 
    6  
    7 =head1 DESCRIPTION 
    8  
    9 This file contains common methods widely used in ispCP Engine files 
    10  
    11 =head1 COPYRIGHT 
    12  
    13 ispCP ω (OMEGA) a Virtual Hosting Control Panel 
    14 Copyright (C) 2001-2006 by moleSoftware GmbH - L<http://www.molesoftware.com> 
    15 Copyright (C) 2006-2011 by ispCP | L<http://ispcp.net> 
    16  
    17 =head1 VERSION 
    18  
    19 Version: $Id$ 
    20  
    21 =head1 LICENSE 
    22  
    23 The contents of this file are subject to the Mozilla Public License 
    24 Version 1.1 (the "License"); you may not use this file except in 
    25 compliance with the License. You may obtain a copy of the License at 
    26 L<http://www.mozilla.org/MPL/> 
    27  
    28 Software distributed under the License is distributed on an "AS IS" 
    29 basis, WITHOUT WARRANTY OF ANY KIND, either express or implied. See the 
    30 License for the specific language governing rights and limitations 
    31 under the License. 
    32  
    33 The Original Code is "VHCS - Virtual Hosting Control System". 
    34  
    35 The Initial Developer of the Original Code is moleSoftware GmbH. 
    36 Portions created by Initial Developer are Copyright (C) 2001-2006 
    37 by moleSoftware GmbH. All Rights Reserved. 
    38 Portions created by the ispCP Team are Copyright (C) 2006-2011 by 
    39 isp Control Panel. All Rights Reserved. 
    40  
    41 =cut 
     3# ispCP ω (OMEGA) a Virtual Hosting Control Panel 
     4# Copyright (C) 2001-2006 by moleSoftware GmbH - http://www.molesoftware.com 
     5# Copyright (C) 2006-2011 by ispCP | http://ispcp.net 
     6# 
     7# Version: $Id$ 
     8# 
     9# The contents of this file are subject to the Mozilla Public License 
     10# Version 1.1 (the "License"); you may not use this file except in 
     11# compliance with the License. You may obtain a copy of the License at 
     12# http://www.mozilla.org/MPL/ 
     13# 
     14# Software distributed under the License is distributed on an "AS IS" 
     15# basis, WITHOUT WARRANTY OF ANY KIND, either express or implied. See the 
     16# License for the specific language governing rights and limitations 
     17# under the License. 
     18# 
     19# The Original Code is "VHCS - Virtual Hosting Control System". 
     20# 
     21# The Initial Developer of the Original Code is moleSoftware GmbH. 
     22# Portions created by Initial Developer are Copyright (C) 2001-2006 
     23# by moleSoftware GmbH. All Rights Reserved. 
     24# Portions created by the ispCP Team are Copyright (C) 2006-2011 by 
     25# isp Control Panel. All Rights Reserved. 
    4226 
    4327# Hide the "used only once: possible typo" warnings 
Note: See TracChangeset for help on using the changeset viewer.