Notice!

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

APPPATH/views/fotos/galeria.php @ line 21

16                <div class="row portfolios">
17
18
19                    <div class="row single_item single_blog_summery blog_style_gallery post_type_photography">
20                         
21                        <h2 class="page_title"><?php echo $album->titulo?></h2>
22
23                        <div class="row hr">
24                            <?php echo $album->descricao?>
25                        </div>
26                    </div>

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/views/fotos/galeria.php @ line 21
    16                <div class="row portfolios">
    17
    18
    19                    <div class="row single_item single_blog_summery blog_style_gallery post_type_photography">
    20                         
    21                        <h2 class="page_title"><?php echo $album->titulo?></h2>
    22
    23                        <div class="row hr">
    24                            <?php echo $album->descricao?>
    25                        </div>
    26                    </div>
    
  3. COREPATH/classes/view.php @ line 240
    235            ob_start();
    236
    237            try
    238            {
    239                // Load the view within the current scope
    240                include $__file_name;
    241            }
    242            catch (\Exception $e)
    243            {
    244                // Delete the output buffer
    245                ob_end_clean();
    
  4. COREPATH/classes/view.php @ line 254
    249            }
    250
    251            // Get the captured output and close the buffer
    252            return ob_get_clean();
    253        };
    254        return $clean_room($file_override ?: $this->file_name$this->get_data());
    255    }
    256
    257    /**
    258     Retrieves all the databoth local and global.  It filters the data if
    259     necessary.
    
  5. COREPATH/classes/view.php @ line 565
    560        {
    561            throw new \FuelException('You must set the file to use within your view before rendering');
    562        }
    563
    564        // combine local and global data and capture the output
    565        $return $this->process_file();
    566
    567        // restore the current language setting
    568        $this->active_language and \Config::set('language'$current_language);
    569
    570        // and the active request class
    
  6. COREPATH/classes/view.php @ line 207
    202     */
    203    public function __toString()
    204    {
    205        try
    206        {
    207            return $this->render();
    208        }
    209        catch (\Exception $e)
    210        {
    211            \Error::exception_handler($e);
    212
    
  7. APPPATH/views/_template.php @ line 121
    116                </div>
    117            </nav>
    118
    119        </header><!--Header End-->
    120        <section id="main_content_holder">
    121            <?php echo $content?>
    122
    123            <footer><!--Footer Start-->
    124                <nav class="navbar navbar-inverse navbar-static-top" role="navigation" id="foot_navigation">
    125                    
    126                </nav>
    
  8. COREPATH/classes/view.php @ line 240
    235            ob_start();
    236
    237            try
    238            {
    239                // Load the view within the current scope
    240                include $__file_name;
    241            }
    242            catch (\Exception $e)
    243            {
    244                // Delete the output buffer
    245                ob_end_clean();
    
  9. COREPATH/classes/view.php @ line 254
    249            }
    250
    251            // Get the captured output and close the buffer
    252            return ob_get_clean();
    253        };
    254        return $clean_room($file_override ?: $this->file_name$this->get_data());
    255    }
    256
    257    /**
    258     Retrieves all the databoth local and global.  It filters the data if
    259     necessary.
    
  10. COREPATH/classes/view.php @ line 565
    560        {
    561            throw new \FuelException('You must set the file to use within your view before rendering');
    562        }
    563
    564        // combine local and global data and capture the output
    565        $return $this->process_file();
    566
    567        // restore the current language setting
    568        $this->active_language and \Config::set('language'$current_language);
    569
    570        // and the active request class
    
  11. COREPATH/classes/view.php @ line 207
    202     */
    203    public function __toString()
    204    {
    205        try
    206        {
    207            return $this->render();
    208        }
    209        catch (\Exception $e)
    210        {
    211            \Error::exception_handler($e);
    212
    
  12. COREPATH/classes/response.php @ line 355
    350     *
    351     * @return  string
    352     */
    353    public function __toString()
    354    {
    355        return (string) $this->body;
    356    }
    357}
    
  13. DOCROOT/index.php @ line 77
    72        throw $e;
    73    }
    74}
    75
    76// Render the output
    77$response->body((string) $response);
    78
    79// This will add the execution time and memory usage to the output.
    80// Comment this out if you don't use it.
    81if (strpos($response->body(), '{exec_time}') !== false or strpos($response->body(), '{mem_usage}') !== false)
    82{
    

Prior Contents (show)