Notice!

Fuel\Core\PhpErrorException [ Notice ]:
Undefined index: page_title

APPPATH/classes/base_controller.php @ line 160

155        // レイアウトパーツ
156        if ( isset($data['current']) )
157        {
158            $this->theme->template->current $data['current'];
159        }
160        if ( strlen($data['page_title']) <= )
161        {
162            $data['page_title']  = \Model_System_Config::val('site_title');
163        }
164        else
165        {

Backtrace

  1. COREPATH/bootstrap.php @ line 103
    98        include COREPATH.'classes/errorhandler.php';
    99        class_alias('\Fuel\Core\Errorhandler''Errorhandler');
    100        class_alias('\Fuel\Core\PhpErrorException''PhpErrorException');
    101    }
    102
    103    return \Errorhandler::error_handler($severity$message$filepath$line);
    104});
    105
    106function setup_autoloader()
    107{
    108    \Autoloader::add_namespace('Fuel\\Core'COREPATH.'classes/');
    
  2. APPPATH/classes/base_controller.php @ line 160
    155        // レイアウトパーツ
    156        if ( isset($data['current']) )
    157        {
    158            $this->theme->template->current $data['current'];
    159        }
    160        if ( strlen($data['page_title']) <= )
    161        {
    162            $data['page_title']  = \Model_System_Config::val('site_title');
    163        }
    164        else
    165        {
    
  3. APPPATH/classes/controller/blog.php @ line 252
    247            )
    248        );
    249        $data $this->_get_list($data$param$dir);
    250
    251        // ページ表示
    252        $this->theme_data('blog/index'$data);
    253    }
    254
    255
    256    // 一覧取得
    257    private function _get_list($data = array(), $param = array(), $dir1 ''$dir2 ''$post_param = array())
    
  4. APPPATH/classes/controller/blog.php @ line 73
    68            $this->_tag_list($dir2);
    69        }
    70        // カテゴリ別一覧
    71        elseif ( strlen($dir2) == )
    72        {
    73            $this->_category_list($dir1);
    74        }
    75        // 詳細
    76        else
    77        {
    78            $this->_detail($dir1$dir2);
    
  5. COREPATH/base56.php @ line 37
    32                $args array_values($args);
    33            }
    34
    35            list($instance$method) = $callback;
    36
    37            return $instance->{$method}(...$args);
    38        }
    39
    40        // static call?
    41        elseif (is_array($callback) and isset($callback[1]) and is_string($callback[0]))
    42        {
    
  6. COREPATH/classes/controller/hybrid.php @ line 81
    76        }
    77
    78        // check if the action method exists
    79        if (method_exists($this$controller_method))
    80        {
    81            return call_fuel_func_array(array($this$controller_method), $arguments);
    82        }
    83
    84        // if not, we got ourselfs a genuine 404!
    85        throw new \HttpNotFoundException();
    86    }
    
  7. COREPATH/classes/request.php @ line 454
    449                    // fire any controller started events
    450                    \Event::instance()->has_events('controller_started') and \Event::instance()->trigger('controller_started''''none');
    451
    452                    $class->hasMethod('before') and $class->getMethod('before')->invoke($this->controller_instance);
    453
    454                    $response $action->invokeArgs($this->controller_instance$this->method_params);
    455
    456                    $class->hasMethod('after') and $response $class->getMethod('after')->invoke($this->controller_instance$response);
    457
    458                    // fire any controller finished events
    459                    \Event::instance()->has_events('controller_finished') and \Event::instance()->trigger('controller_finished''''none');
    
  8. DOCROOT/index.php @ line 86
    81            $response Response::forge($response);
    82        }
    83    }
    84    elseif ($e === false)
    85    {
    86        $response Request::forge()->execute()->response();
    87    }
    88    elseif ($route)
    89    {
    90        $response Request::forge($routefalse)->execute(array($e))->response();
    91    }
    
  9. DOCROOT/index.php @ line 107
    102{
    103    // Boot the app...
    104    require APPPATH.'bootstrap.php';
    105
    106    // ... and execute the main request
    107    $response $routerequest();
    108}
    109catch (HttpBadRequestException $e)
    110{
    111    $response $routerequest('_400_'$e);
    112}