summaryrefslogtreecommitdiffstats
path: root/system/libraries/Profiler.php
AgeCommit message (Collapse)AuthorFilesLines
2022-03-02[ci skip] Update copyright noticesAndrey Andreev1-1/+2
2022-02-13[ci skip] Merge pull request #6100 from svennd/developAndrey Andreev1-2/+2
profiler.php PHP 8.1 deprecation notice
2020-07-09[ci skip] Merge pull request #5970 from sapics/fix/user-guide-urlAndrey Andreev1-1/+1
Fix user guide url
2020-01-27[ci skip] Fix #5879Andrey Andreev1-3/+3
2019-10-08Merge pull request #5842 from sapics/chore/fix-indentAndrey Andreev1-6/+6
Fix indentation / clear whitespace
2019-01-02Merge pull request #5662 from jim-parry/copyright2019Instructor, BCIT1-3/+3
Update copyright date to 2019
2018-01-09[ci skip] Merge pull request #5376 from jim-parry/copyright-updateAndrey Andreev1-2/+2
Annual copyright update Conflicts resolved: system/libraries/Cache/drivers/Cache_apcu.php
2017-07-10[ci skip] Merge pull request #5128 from lloricode/profiler-pre-tagAndrey Andreev1-2/+14
Profiler add pre tag
2017-01-23Merge pull request #4990 from tianhe1986/develop_profilerAndrey Andreev1-5/+5
Two small changes with CI_Profiler
2017-01-03Update copyright data to 2017Master Yoda1-2/+2
2016-03-07[ci skip] Fix Profiler not applying htmlspecialchars() to all inputsAndrey Andreev1-26/+18
2016-01-11[ci skip] Update ellislab.com links to https tooAndrey Andreev1-1/+1
2016-01-11[ci skip] Update codeigniter.com links to httpsAndrey Andreev1-2/+2
2016-01-11[ci skip] Bump year to 2016Andrey Andreev1-2/+2
2015-08-05Reduce once $config['query_toggle_count'] checkingbjjay1-6/+0
This checking can be done by calling set_sections method when initialize profiler .
2015-01-21Remove closing blocks at end of PHP filesvlakoff1-3/+0
2015-01-20[ci skip] Change some log messages' levelAndrey Andreev1-0/+1
'Class Loaded' type of messages flood log files when log_threshold is set to 2 (debug). They're now logged as 'info' level. This is manually applying PR #1528, which was created to do the same thing, but became outdated.
2015-01-09Bulk (mostly documentation) updateAndrey Andreev1-3/+3
- Remove PHP version from license notices - Bump year number in copyright notices - Recommend PHP 5.4 or newer to be used - Tell Travis-CI to test on PHP 5.3.0 instead of the latest 5.3 version Related: #3450
2014-10-27[ci skip] Switch to MIT license; close #3293Andrey Andreev1-14/+25
2014-03-19Fix profiling of benchmarked names like 'something_endpoint_end'Richard Cunningham1-1/+1
2014-02-112013 > 2014darwinel1-1/+1
Update copyright notices from 2013 to 2014. And update one calendar example in user_guide from year 2013/2014 to 2014/2015.
2014-01-24Righting a wrong in the Session libraryAndrey Andreev1-1/+1
- Change userdata(), flashdata(), tempdata() to return all the respective data when no parameter is passed. - Revert the addition of all_flashdata(). - Deprecate all_userdata(). - Fix related changelog entries that were all inconsistent.
2014-01-03[ci skip] Some spaces & docblock fixesAndrey Andreev1-1/+1
2013-12-14Added post-increment for $countCristian Riffo Huez1-1/+2
It has been added the missing post-increment for variable $count.
2013-10-16req. changes:David Cox Jr1-15/+4
cleaned up conditionals added changelog note regarding profiler updated as per styleguide
2013-09-25fix issue #2617David Cox Jr1-1/+21
simply adds the $_FILES array to profiler output of POST data
2013-07-17[ci skip] Remove some empty linesAndrey Andreev1-1/+1
2013-07-17Merge pull request #2447 from rlerdorf/developAndrey Andreev1-2/+2
A few minor fixes and cleanups
2013-07-17Add changelog entry for PR #2502Andrey Andreev1-1/+1
2013-06-27Update Profiler.php to show HTTP_DNT statusIacami1-2/+2
show do not track header status
2013-05-18highlight_code() doesn't take an ENT_QUOTES argRasmus Lerdorf1-2/+2
Signed-off-by: Rasmus Lerdorf <rasmus@php.net>
2013-04-04Fix #2380 and deprecate CI_Router::fetch_*() methodsAndrey Andreev1-1/+1
2013-02-15Fix some stuff from recent pull requestsAndrey Andreev1-2/+1
2013-02-15Various cosmetic fixesvlakoff1-1/+1
2013-02-14changes according to narfbg's requestTim1-2/+2
2013-02-13changes according to narfbg's requestTim1-3/+3
2013-02-13Added small feature to profiler: total execution time countTim1-2/+4
adds additional information to profiler like: DATABASE:  test   QUERIES: 3 (0.0016s)  (Hide)
2013-01-01[ci skip] Happy new yearAndrey Andreev1-1/+1
2012-11-06Display DB object names in the Profiler and fix issue #1220Andrey Andreev1-8/+23
2012-11-01Manually apply PR #1594 (fixing phpdoc page-level generation/warnings)Andrey Andreev1-1/+2
Also partially fixes issue #1295, fixes inconsistencies in some page-level docblocks and adds include checks in language files.
2012-06-16Fix issue #318 + added a default to the switch() in CI_Output::minify()Andrey Andreev1-0/+6
2012-06-07Remove some unnecessary function_exists() checks and some minor improvementsAndrey Andreev1-1/+1
2012-06-02Replaced `==` with `===` and `!=` with `!==` in /system/librariesAlex Bilbie1-4/+4
2012-05-17Clean up the librariesAndrey Andreev1-0/+1
2012-04-20Start comment cleanup of librariesTimothy Warren1-11/+33
2012-04-03Clean up the Profiler libraryAndrey Andreev1-95/+101
2012-03-09Bumped CodeIgniter's PHP requirement to 5.2.4.Phil Sturgeon1-1/+1
Yes I know PHP 5.4 just came out, and yes I know PHP 5.3 has lovely features, but there are plenty of corporate systems running on CodeIgniter and PHP 5.3 still is not widely supported enough. CodeIgniter is great for distributed applications, and this is the highest we can reasonably go without breaking support. PHP 5.3 will most likely happen in another year or so. Fingers crossed on that one anyway...
2012-03-02Fix issue #803 (Profiler library didn't handle objects properly)Andrey Andreev1-7/+5
2012-01-02Updating copyright date to 2012Greg Aker1-1/+1
2011-12-25Improve the Profiler libraryAndrey Andreev1-144/+81