fix date_formatted issue

This commit is contained in:
theshka 2015-05-29 13:23:20 -04:00
parent eb368d31e1
commit 28a6b721ce

View File

@ -1,8 +1,8 @@
<?php <?php
/** /**
* Pico Configuration * Pico Configuration
* *
* This is the configuration file for Pico. It comes loaded with the * This is the configuration file for Pico. It comes loaded with the
* default values, which can be found in the get_config() method of * default values, which can be found in the get_config() method of
* the Pico class (lib/pico.php). * the Pico class (lib/pico.php).
* *
@ -11,7 +11,7 @@
* @license http://opensource.org/licenses/MIT * @license http://opensource.org/licenses/MIT
* @version 0.9 * @version 0.9
* *
* To override any of the default settings below, uncomment the line, * To override any of the default settings below, uncomment the line,
* make and save the changes, then rename this file to `config.php` * make and save the changes, then rename this file to `config.php`
*/ */
@ -26,15 +26,15 @@
*/ */
// $config['theme'] = 'default'; // Set the theme (defaults to "default") // $config['theme'] = 'default'; // Set the theme (defaults to "default")
// $config['twig_config'] = array( // Twig settings // $config['twig_config'] = array( // Twig settings
// 'cache' => false, // To enable Twig caching change this to CACHE_DIR // 'cache' => false, // To enable Twig caching change this to CACHE_DIR
// 'autoescape' => false, // Autoescape Twig vars // 'autoescape' => false, // Autoescape Twig vars
// 'debug' => false // Enable Twig debug // 'debug' => false // Enable Twig debug
// ); // );
/* /*
* CONTENT * CONTENT
*/ */
// $config['date_format'] = 'jS M Y'; // Set the PHP date format as described here: http://php.net/manual/en/function.strftime.php // $config['date_format'] = '%D %T'; // Set the PHP date format as described here: http://php.net/manual/en/function.strftime.php
// $config['pages_order_by'] = 'alpha'; // Order pages by "alpha" or "date" // $config['pages_order_by'] = 'alpha'; // Order pages by "alpha" or "date"
// $config['pages_order'] = 'asc'; // Order pages "asc" or "desc" // $config['pages_order'] = 'asc'; // Order pages "asc" or "desc"
// $config['excerpt_length'] = 50; // The pages excerpt length (in words) // $config['excerpt_length'] = 50; // The pages excerpt length (in words)