Notice!

Fuel\Core\PhpErrorException [ Notice ]:
Trying to access array offset on value of type null

APPPATH/views/elements/title-meta.php @ line 27

22    }
23
24    break;
25  case 'news':
26    if (!empty($segments[2])) {
27      $title $detail['information_title'] . '|';
28    }
29
30    break;
31}
32?>

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/elements/title-meta.php @ line 27
    22    }
    23
    24    break;
    25  case 'news':
    26    if (!empty($segments[2])) {
    27      $title $detail['information_title'] . '|';
    28    }
    29
    30    break;
    31}
    32?>
    
  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/news_detail.php @ line 4
     0
     1<!DOCTYPE HTML>
     2<html lang="ja">
     3<head>
     4<?=$title_meta?>
     5<?=$css?>
     6</head>
     7<body>
     8<?=$googletagmanager?>
     9<!-- Wrapper -->
    
  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)