Notice!

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

APPPATH/views/ticket/detail.php @ line 95

90                <?php ?>
91                <tr>
92                    <th class="margin"></th>
93                    <th>会場</th>
94                    <td><?php if($row['venue_link_flg']==0){echo $row['venue'];} else{ ?>
95                                        <a href="/hall/detail/<?php echo $row['venue_id']; ?>"><?php echo $row['venue']; ?></a>
96                                    <?php ?>
97                    </td>
98                </tr>
99                <tr>
100                    <th class="margin"></th>

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/ticket/detail.php @ line 95
    90                <?php ?>
    91                <tr>
    92                    <th class="margin"></th>
    93                    <th>会場</th>
    94                    <td><?php if($row['venue_link_flg']==0){echo $row['venue'];} else{ ?>
    95                                        <a href="/hall/detail/<?php echo $row['venue_id']; ?>"><?php echo $row['venue']; ?></a>
    96                                    <?php ?>
    97                    </td>
    98                </tr>
    99                <tr>
    100                    <th class="margin"></th>
    
  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. COREPATH/classes/response.php @ line 355
    350     *
    351     * @return  string
    352     */
    353    public function __toString()
    354    {
    355        return (string) $this->body;
    356    }
    357}
    
  8. 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{