Changeset 229

Show
Ignore:
Timestamp:
03/13/09 09:27:02 (3 years ago)
Author:
Nafania
Message:

Мелкие правки. Добавлен sql файл для голой установки.

Files:

Legend:

Unmodified
Added
Removed
Modified
Copied
Moved
  • db_updater.php

    r225 r229  
    170170                } 
    171171        } 
     172        $db->sql_freeresult($result); 
     173 
     174 
    172175        $db->sql_query('ALTER TABLE ' . COMMENTS_TABLE . ' DROP `request`'); 
    173176        $db->sql_query('ALTER TABLE ' . COMMENTS_TABLE . ' DROP `offer`'); 
     
    203206                } 
    204207        } 
     208        $db->sql_freeresult($result); 
     209 
    205210        $db->sql_query('ALTER TABLE ' . COMMENTS_NOTIFY_TABLE . ' DROP `checkcomm_id`'); 
    206211        $db->sql_query('ALTER TABLE ' . COMMENTS_NOTIFY_TABLE . ' DROP `request`'); 
  • include/functions_selects.php

    r222 r229  
    245245        } 
    246246 
     247        $cats = array(); 
    247248        while( $row = $db->sql_fetchrow($result) ){ 
    248249                $parent_cat_id = ( $row['cat_parent_id'] ? $row['cat_parent_id'] : $row['id'] ); 
  • languages/lang_english/lang_admin.php

    r221 r229  
    252252        'click_return_config' =>  'Click %sHere%s to return to General Configuration', 
    253253 
    254         'general_settings' =>  'General Board Settings', 
     254        'general_settings' =>  'General Settings', 
    255255        'server_url_settings' =>  'Server URL settings', 
    256256        'server_name' =>  'Domain Name', 
  • my.php

    r184 r229  
    335335                $result = $db->sql_query($sql, 30 * 60); 
    336336 
     337                $cats = array(); 
    337338                while( $row = $db->sql_fetchrow($result) ){ 
    338339                        $parent_cat_id = ( $row['cat_parent_id'] ? $row['cat_parent_id'] : $row['id'] );