Browse Source

Merge pull request #233 from kushipl/master

Fixed indent
Tyler Heshka 10 năm trước cách đây
mục cha
commit
376e551ec4
1 tập tin đã thay đổi với 3 bổ sung3 xóa
  1. 3 3
      lib/pico.php

+ 3 - 3
lib/pico.php

@@ -186,7 +186,7 @@ class Pico {
 	protected function get_config()
 	protected function get_config()
 	{
 	{
 
 
-        $this->config = @include_once(ROOT_DIR .'config.php');
+		$this->config = @include_once(ROOT_DIR .'config.php');
 
 
 		$defaults = array(
 		$defaults = array(
 			'site_title' => 'Pico',
 			'site_title' => 'Pico',
@@ -216,7 +216,7 @@ class Pico {
 	 */
 	 */
 	protected function get_pages($base_url, $order_by = 'alpha', $order = 'asc', $excerpt_length = 50)
 	protected function get_pages($base_url, $order_by = 'alpha', $order = 'asc', $excerpt_length = 50)
 	{
 	{
-        $config = $this->config;
+		$config = $this->config;
 
 
 		$pages = $this->get_files($config['content_dir'], CONTENT_EXT);
 		$pages = $this->get_files($config['content_dir'], CONTENT_EXT);
 		$sorted_pages = array();
 		$sorted_pages = array();
@@ -293,7 +293,7 @@ class Pico {
 	 */
 	 */
 	protected function base_url()
 	protected function base_url()
 	{
 	{
-        $config = $this->config;
+		$config = $this->config;
 
 
 		if(isset($config['base_url']) && $config['base_url']) return $config['base_url'];
 		if(isset($config['base_url']) && $config['base_url']) return $config['base_url'];