Changeset 1438

Show
Ignore:
Timestamp:
04/09/06 10:58:22 (7 years ago)
Author:
mheydon1973
Message:

Typo by me

Files:

Legend:

Unmodified
Added
Removed
Modified
Copied
Moved
  • freepbx/trunk/upgrades/2.1beta1/tables.php

    r1432 r1438  
    22 
    33// Meetme table will only exist if Conferencing module installed 
    4 $sql = "SELECT value FROM globals WHERE variable = 'TIMEZONE' "; 
     4$sql = "SELECT value FROM globals WHERE variable = 'TONEZONE' "; 
    55$tz = $db->getRow($sql, DB_FETCHMODE_ASSOC); 
    66if (!is_array($tz)) { // does not exist already 
    77        // Default to 'us' 
    8         $sql = "INSERT INTO globals (variable, value) VALUES ('TIMEZONE', 'us') "; 
     8        $sql = "INSERT INTO globals (variable, value) VALUES ('TONEZONE', 'us') "; 
    99        $result = $db->query($sql); 
    1010        if(DB::IsError($result)) {