lonnieezell / codeigniter-forensics

A high-powered, customizable Profiler replacement for CodeIgniter.

Geek Repo:Geek Repo

Github PK Tool:Github PK Tool

Could not find the language line ""

JonoB opened this issue · comments

Line 289 of profiler_template.php

    <h2><?php echo lang('profiler_'. $section) ?></h2>

Needs to be replaced with

    <?php $append = ($section == 'get' || $section == 'post') ? '_data' : ''; ?>    
    <h2><?php echo lang('profiler_'. $section . $append) ?></h2>

each title section are hardcoded so this issue #2 are not longer.. must be closed @lonnieezell