Changes in [2181:f30610fc3af1:2184:0176916f2d71]
- File:
-
- 1 edited
Legend:
- Unmodified
- Added
- Removed
-
admin/install/index.php
r1949 r2183 146 146 $blog_settings->system->put('public_url',$root_url.'/public'); 147 147 $blog_settings->system->put('themes_url',$root_url.'/themes'); 148 $blog_settings->system->put('date_format',__('%A, %B %e %Y')); 148 $formatDate = __('%A, %B %e %Y'); 149 if (strtoupper(substr(PHP_OS, 0, 3)) == 'WIN') { 150 $formatDate = preg_replace('#(?<!%)((?:%%)*)%e#', '\1%#d', $formatDate); 151 } 152 $blog_settings->system->put('date_format', $formatDate); 149 153 150 154 # Add Dotclear version
Note: See TracChangeset
for help on using the changeset viewer.