Notice!

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

APPPATH/views/item/detail.php @ line 236

231            
232            <div class="col-sm-4">
233                <span class="text-yellow">修理レベル</span>
234            </div>
235            <div class="col-sm-8">
236                <?php echo $listClassJob[$data->item_equip_base->repair_class]; ?>&nbsp;Lvecho $data->item_equip_base->repair_level?>
237            </div>
238            <div class="col-sm-4">
239                <span class="text-yellow">修理資材</span>
240            </div>
241            <div class="col-sm-8">

Backtrace

  1. COREPATH/bootstrap.php @ line 79
    74set_error_handler(function ($severity$message$filepath$line)
    75{
    76    // reset the autoloader
    77    \Autoloader::_reset();
    78
    79    return \Error::error_handler($severity$message$filepath$line);
    80});
    81
    82function setup_autoloader()
    83{
    84    Autoloader::add_namespace('Fuel\\Core'COREPATH.'classes/');
    
  2. APPPATH/views/item/detail.php @ line 236
    231            
    232            <div class="col-sm-4">
    233                <span class="text-yellow">修理レベル</span>
    234            </div>
    235            <div class="col-sm-8">
    236                <?php echo $listClassJob[$data->item_equip_base->repair_class]; ?>&nbsp;Lvecho $data->item_equip_base->repair_level?>
    237            </div>
    238            <div class="col-sm-4">
    239                <span class="text-yellow">修理資材</span>
    240            </div>
    241            <div class="col-sm-8">
    
  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 200
    195                </p>
    196            </div>
    197<?php endif; ?>
    198        </div>
    199        <div class="col-sm-12">
    200<?php echo $content?>
    201        </div>
    202    </div>
    203<div id="push"></div>
    204</div>
    205<div id="footer">
    
  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. DOCROOT/index.php @ line 82
    77$response->body(
    78    str_replace(
    79        array('{exec_time}''{mem_usage}'),
    80        array(round($bm[0], 4), round($bm[1] / pow(10242), 3)),
    81        $response->body()
    82    )
    83);
    84
    85$response->send(true);
    

Prior Contents (show)