Ignore:
Timestamp:
11/07/07 18:29:04 (5 years ago)
Author:
root
Message:

Fixed a typo in rev01082.php
Replaced date selection HTML by smarty html_select_date function

File:
1 edited

Legend:

Unmodified
Added
Removed
  • trunk/administration/upgrade/rev01082.php

    r1082 r1083  
    3131 
    3232// add the new fields to the locales table 
    33 $commands[] = array('type' => 'db', 'value' => "ALTER TABLE ##PREFIX##locales ADD locale_locale VARCHAR(25) NOT NULL DEFAULT '' AFTER locale_name"); 
    34 $commands[] = array('type' => 'db', 'value' => "ALTER TABLE ##PREFIX##locales ADD locale_charset VARCHAR(25) NOT NULL DEFAULT '' AFTER locale_locale"); 
     33$commands[] = array('type' => 'db', 'value' => "ALTER TABLE ##PREFIX##locale ADD locale_locale VARCHAR(25) NOT NULL DEFAULT '' AFTER locale_name"); 
     34$commands[] = array('type' => 'db', 'value' => "ALTER TABLE ##PREFIX##locale ADD locale_charset VARCHAR(25) NOT NULL DEFAULT '' AFTER locale_locale"); 
    3535 
    36 // and pupulate them with default values 
    37 $commands[] = array('type' => 'db', 'value' => "UPDATE ##PREFIX##locales SET locale_locale = 'en_US|en_GB|english|eng', locale_charset = 'iso-8859-1'"); 
     36// and populate them with a default value 
     37$commands[] = array('type' => 'db', 'value' => "UPDATE ##PREFIX##locale SET locale_locale = 'en_US|en_GB|english|eng', locale_charset = 'iso-8859-1'"); 
    3838 
    3939?> 
Note: See TracChangeset for help on using the changeset viewer.