Notice!

Fuel\Core\PhpErrorException [ Notice ]:
Trying to get property of non-object

APPPATH/views/jp/news_detail.php @ line 3

0
1
2<section id="news" class="sub detail">
3    <h1 class="section-title"><?php echo $news->title ?></h1>
4    <div class="inner">
5        <div class="news-list-cont detail" data-sb="zenFadeInUp" data-sb-hide="zenFadeOutUp">
6        <div class="news-date"><span><?php 
7                $cDate strtotime($news->contents_date);
8                echo date("m",$cDate).".".date("d",$cDate).".".date("Y",$cDate); 

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/views/jp/news_detail.php @ line 3
    0
    1
    2<section id="news" class="sub detail">
    3    <h1 class="section-title"><?php echo $news->title ?></h1>
    4    <div class="inner">
    5        <div class="news-list-cont detail" data-sb="zenFadeInUp" data-sb-hide="zenFadeOutUp">
    6        <div class="news-date"><span><?php 
    7                $cDate strtotime($news->contents_date);
    8                echo date("m",$cDate).".".date("d",$cDate).".".date("Y",$cDate); 
    
  3. COREPATH/classes/view.php @ line 244
    239            ob_start();
    240
    241            try
    242            {
    243                // Load the view within the current scope
    244                include $__file_name;
    245            }
    246            catch (\Exception $e)
    247            {
    248                // Delete the output buffer
    249                ob_end_clean();
    
  4. COREPATH/classes/view.php @ line 260
    255            // Get the captured output and close the buffer
    256            return ob_get_clean();
    257        };
    258
    259        // import and process the view file
    260        $result $clean_room($file_override ?: $this->file_name$data $this->get_data());
    261
    262        // disable sanitization on objects that support it
    263        $this->unsanitize($data);
    264
    265        // return the result
    
  5. COREPATH/classes/view.php @ line 631
    626        {
    627            throw new \FuelException('You must set the file to use within your view before rendering');
    628        }
    629
    630        // combine local and global data and capture the output
    631        $return $this->process_file();
    632
    633        // restore the current language setting
    634        $this->active_language and \Config::set('language'$current_language);
    635
    636        // and the active request class
    
  6. COREPATH/classes/view.php @ line 213
    208     */
    209    public function __toString()
    210    {
    211        try
    212        {
    213            return $this->render();
    214        }
    215        catch (\Exception $e)
    216        {
    217            \Errorhandler::exception_handler($e);
    218
    
  7. APPPATH/views/template.php @ line 147
    142<div id="container">
    143<!-- contents -->
    144<article role="main">
    145    <!-- #cont -->
    146    <div id="cont">
    147    <?php echo $main?>
    148    </div>
    149</article>
    150</div>
    151<!-- /contianer -->
    152<?php echo $footer?>
    
  8. COREPATH/classes/view.php @ line 244
    239            ob_start();
    240
    241            try
    242            {
    243                // Load the view within the current scope
    244                include $__file_name;
    245            }
    246            catch (\Exception $e)
    247            {
    248                // Delete the output buffer
    249                ob_end_clean();
    
  9. COREPATH/classes/view.php @ line 260
    255            // Get the captured output and close the buffer
    256            return ob_get_clean();
    257        };
    258
    259        // import and process the view file
    260        $result $clean_room($file_override ?: $this->file_name$data $this->get_data());
    261
    262        // disable sanitization on objects that support it
    263        $this->unsanitize($data);
    264
    265        // return the result
    
  10. COREPATH/classes/view.php @ line 631
    626        {
    627            throw new \FuelException('You must set the file to use within your view before rendering');
    628        }
    629
    630        // combine local and global data and capture the output
    631        $return $this->process_file();
    632
    633        // restore the current language setting
    634        $this->active_language and \Config::set('language'$current_language);
    635
    636        // and the active request class
    
  11. COREPATH/classes/view.php @ line 213
    208     */
    209    public function __toString()
    210    {
    211        try
    212        {
    213            return $this->render();
    214        }
    215        catch (\Exception $e)
    216        {
    217            \Errorhandler::exception_handler($e);
    218
    
  12. COREPATH/classes/response.php @ line 382
    377     *
    378     * @return  string
    379     */
    380    public function __toString()
    381    {
    382        return (string) $this->body;
    383    }
    384}
    
  13. DOCROOT/index.php @ line 113
    108    $response $routerequest('_500_'$e);
    109}
    110
    111// This will add the execution time and memory usage to the output.
    112// Comment this out if you don't use it.
    113$response->body((string) $response);
    114if (strpos($response->body(), '{exec_time}') !== false or strpos($response->body(), '{mem_usage}') !== false)
    115{
    116    $bm Profiler::app_total();
    117    $response->body(
    118        str_replace(
    

Prior Contents (show)