HomeHelpTrac

Ignore:
Timestamp:
04/06/09 04:21:27 (3 years ago)
Author:
Andrey Prikaznov
Message:
 
File:
1 edited

Legend:

Unmodified
Added
Removed
  • trunk/install/index.php

    r9939 r9972  
    14351435 
    14361436    $enable_gd_value = extension_loaded('gd') ? 'on' : ''; 
    1437     if (! (mysql_query ("UPDATE `GlParams` SET `VALUE`='{$enable_gd_value}' WHERE `Name`='enable_gd'", $vLink ))) 
     1437    if (! (mysql_query ("UPDATE `sys_options` SET `VALUE`='{$enable_gd_value}' WHERE `Name`='enable_gd'", $vLink ))) 
    14381438        $ret .= "<font color=red><i><b>Error</b>:</i> ".mysql_error()."</font><hr>"; 
    14391439 
     
    14421442    $sSiteEmailNotify = $_POST['notify_email']; 
    14431443    if ($sSiteEmail != '' && $sSiteTitle != '' && $sSiteEmailNotify != '') { 
    1444         if (! (mysql_query("UPDATE `GlParams` SET `VALUE`='{$sSiteEmail}' WHERE `Name`='site_email'", $vLink))) 
     1444        if (! (mysql_query("UPDATE `sys_options` SET `VALUE`='{$sSiteEmail}' WHERE `Name`='site_email'", $vLink))) 
    14451445            $ret .= "<font color=red><i><b>Error</b>:</i> ".mysql_error()."</font><hr>"; 
    1446         if (! (mysql_query("UPDATE `GlParams` SET `VALUE`='{$sSiteTitle}' WHERE `Name`='site_title'", $vLink))) 
     1446        if (! (mysql_query("UPDATE `sys_options` SET `VALUE`='{$sSiteTitle}' WHERE `Name`='site_title'", $vLink))) 
    14471447            $ret .= "<font color=red><i><b>Error</b>:</i> ".mysql_error()."</font><hr>"; 
    1448         if (! (mysql_query("UPDATE `GlParams` SET `VALUE`='{$sSiteEmailNotify}' WHERE `Name`='site_email_notify'", $vLink))) 
     1448        if (! (mysql_query("UPDATE `sys_options` SET `VALUE`='{$sSiteEmailNotify}' WHERE `Name`='site_email_notify'", $vLink))) 
    14491449            $ret .= "<font color=red><i><b>Error</b>:</i> ".mysql_error()."</font><hr>"; 
    14501450    } else { 
Note: See TracChangeset for help on using the changeset viewer.