Notice!

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

APPPATH/classes/controller/index.php @ line 454

449        $profile Model_Userprofile::query()
450            ->where('user_id'$id)
451            ->where('disp_flg'1)
452            ->get_one();
453
454        $kbn explode(','$profile->kbn);
455        $profile->kbn array_shift($kbn);
456        $this->data['profile'] = $profile;
457
458        $news_rows Model_usernews::query()
459            ->where('user_id'$profile->user_id)

Backtrace

  1. COREPATH/bootstrap.php @ line 98
    93        include COREPATH.'classes/error.php';
    94        class_alias('\Fuel\Core\Error''Error');
    95        class_alias('\Fuel\Core\PhpErrorException''PhpErrorException');
    96    }
    97
    98    return \Error::error_handler($severity$message$filepath$line);
    99});
    100
    101function setup_autoloader()
    102{
    103    Autoloader::add_namespace('Fuel\\Core'COREPATH.'classes/');
    
  2. APPPATH/classes/controller/index.php @ line 454
    449        $profile Model_Userprofile::query()
    450            ->where('user_id'$id)
    451            ->where('disp_flg'1)
    452            ->get_one();
    453
    454        $kbn explode(','$profile->kbn);
    455        $profile->kbn array_shift($kbn);
    456        $this->data['profile'] = $profile;
    457
    458        $news_rows Model_usernews::query()
    459            ->where('user_id'$profile->user_id)
    
  3. COREPATH/classes/request.php @ line 444
    439                    // fire any controller started events
    440                    \Event::instance()->has_events('controller_started') and \Event::instance()->trigger('controller_started''''none');
    441
    442                    $class->hasMethod('before') and $class->getMethod('before')->invoke($this->controller_instance);
    443
    444                    $response $action->invokeArgs($this->controller_instance$this->method_params);
    445
    446                    $class->hasMethod('after') and $response $class->getMethod('after')->invoke($this->controller_instance$response);
    447
    448                    // fire any controller finished events
    449                    \Event::instance()->has_events('controller_finished') and \Event::instance()->trigger('controller_finished''''none');
    
  4. DOCROOT/index.php @ line 49
    44require APPPATH.'bootstrap.php';
    45
    46// Generate the request, execute it and send the output.
    47try
    48{
    49    $response Request::forge()->execute()->response();
    50}
    51catch (HttpNotFoundException $e)
    52{
    53    $route array_key_exists('_404_'Router::$routes) ? Router::$routes['_404_']->translation Config::get('routes._404_');
    54