Plugin Directory

Changeset 445351


Ignore:
Timestamp:
09/29/2011 05:58:35 PM (14 years ago)
Author:
inxilpro
Message:

Rebasing SVN

Location:
debug-bar-query-tracer/trunk
Files:
3 edited

Legend:

Unmodified
Added
Removed
  • debug-bar-query-tracer/trunk/Panel.php

    r444844 r445351  
    3838       
    3939        <div id="galahad-tracer">
    40             <?php $this->_renderData(Galahad_Query_Tracer::instance()->getData()); ?>
     40            <?php
     41           
     42            $data = Galahad_Query_Tracer::instance()->getData();
     43            if (!empty($data)) {
     44                $this->_renderData();
     45            } else {
     46                _e('No queries caused by plugins.');
     47            }
     48           
     49            ?>
    4150        </div>
    4251       
  • debug-bar-query-tracer/trunk/Tracer.php

    r445317 r445351  
    118118           
    119119            $this->_parsed = true;
     120            usort($this->_data, array($this, '_sortByName'));
    120121        }
    121122       
    122         usort($this->_data, array($this, '_sortByName'));
    123123        return $this->_data;
    124124    }
  • debug-bar-query-tracer/trunk/readme.txt

    r444850 r445351  
    3939= 0.1 =
    4040* Initial release
     41= 0.1.1 =
     42* Made sure everything is ready for internationalization
     43= 0.1.2 =
     44* Bugfixes
     45* Added better handling for instances where not queries were caused by plugins
Note: See TracChangeset for help on using the changeset viewer.