Dotclear

Changeset 2995:567168ce989b


Ignore:
Timestamp:
04/20/15 11:36:36 (10 years ago)
Author:
Nicolas <nikrou77@…>
Branch:
default
Message:

Fix path for classes (SQLite)
Fix first blog name and first blog language

Location:
features
Files:
2 edited

Legend:

Unmodified
Added
Removed
  • features/bootstrap/autoload.php

    r2984 r2995  
    2121$__autoload['mysqlSchema'] = CLEARBRICKS_PATH.'/dbschema/class.mysql.dbschema.php'; 
    2222$__autoload['mysqliSchema'] = CLEARBRICKS_PATH.'/dbschema/class.mysqli.dbschema.php'; 
     23$__autoload['sqliteSchema'] = CLEARBRICKS_PATH.'/dbschema/class.sqlite.dbschema.php'; 
    2324$__autoload['dbLayer'] = CLEARBRICKS_PATH.'/dblayer/dblayer.php'; 
    2425$__autoload['mysqlConnection'] = CLEARBRICKS_PATH.'/dblayer/class.mysql.php'; 
    2526$__autoload['mysqliConnection'] = CLEARBRICKS_PATH.'/dblayer/class.mysqli.php'; 
    2627$__autoload['pgsqlConnection'] = CLEARBRICKS_PATH.'/dblayer/class.pgsql.php'; 
     28$__autoload['sqliteConnection'] = CLEARBRICKS_PATH.'/dblayer/class.sqlite.php'; 
    2729$__autoload['crypt'] = CLEARBRICKS_PATH.'/common/lib.crypt.php'; 
     30$__autoload['files'] = CLEARBRICKS_PATH.'/common/lib.files.php'; 
     31$__autoload['path'] = CLEARBRICKS_PATH.'/common/lib.files.php'; 
    2832 
    2933 
  • features/sql/db_init.sql

    r2931 r2995  
    11UPDATE dc_user SET user_lang = 'en'; 
     2UPDATE dc_blog SET blog_name = 'My first blog' WHERE blog_id = 'default'; 
     3UPDATE dc_setting SET setting_value = 'en',blog_id = 'default' WHERE setting_ns = 'system' AND setting_id = 'lang'; 
Note: See TracChangeset for help on using the changeset viewer.

Sites map