1. 52301c7 Documentation: fix some outdated paths by vlakoff · 12 years ago
  2. 408cbb4 Code style fix by nisheeth-barthwal · 12 years ago
  3. 47ea5a8 Code fixes in line with suggestions by nisheeth-barthwal · 12 years ago
  4. 77236e0 Simplified notation parsing and other cosmetic fixes by nisheeth-barthwal · 12 years ago
  5. 7b1a2f1 Changed "else if" to "elseif" by nisheeth-barthwal · 12 years ago
  6. a5bcfb1 Removed $recurse parameter in lieu of auto parsing. Changed "provision" entry. by nisheeth-barthwal · 12 years ago
  7. a7447d2 Added array notation for keys in Input library by nisheeth-barthwal · 12 years ago
  8. 7b90325 Output Class Minify Function Change by bayssmekanique · 12 years ago
  9. 5a6814e Fix #2301 by Andrey Andreev · 12 years ago
  10. 8626e93 Reverting changes to functions that have no business being used in CLI apps to begin with by Daniel Hunsaker · 12 years ago
  11. b2ac67a Oops, missed a few places where EXIT_SUCCESS was being used. by Daniel Hunsaker · 12 years ago
  12. 50dfe01 Updated in accordance with feedback from @narfbg by Daniel Hunsaker · 12 years ago
  13. e5d7af5 Merge branch 'develop' of github.com:EllisLab/CodeIgniter into feature/exit-status by Daniel Hunsaker · 12 years ago
  14. a5e0ea8 Fix this use case: load->vars->('foobar', '') by vlakoff · 12 years ago
  15. 3b5b7f4 Updated exit codes as constant values by Daniel Hunsaker · 12 years ago
  16. 44a6d1d Merge branch 'develop' of github.com:EllisLab/CodeIgniter into feature/exit-status by Daniel Hunsaker · 12 years ago
  17. 49e68de Disable autoloader call from class_exists() occurences to improve performance by Andrey Andreev · 12 years ago
  18. a107a0f Fix some stuff from recent pull requests by Andrey Andreev · 12 years ago
  19. d11673b Merge pull request #2245 from maltzurra/patch-1 by Andrey Andreev · 12 years ago
  20. 73abf95 Merge pull request #2243 from chrispassas/develop by Andrey Andreev · 12 years ago
  21. 62f7cdf Revert "Update system/core/Common.php" by Chris Passas · 12 years ago
  22. 6f19fd7 Revert "Update system/core/Log.php" by Chris Passas · 12 years ago
  23. b060770 Revert "Revert "Update system/core/Common.php"" by Chris Passas · 12 years ago
  24. 614cc1c Revert "Update system/core/Common.php" by Chris Passas · 12 years ago
  25. ce6f43b Update system/core/Common.php by Chris Passas · 12 years ago
  26. 8d86367 Update system/core/Log.php by Chris Passas · 12 years ago
  27. 3567246 Various cosmetic fixes by vlakoff · 12 years ago
  28. beafe2f Update system/core/Common.php by maltzurra · 12 years ago
  29. de8766f Update system/core/Common.php by maltzurra · 12 years ago
  30. fb8de24 Update system/core/Log.php by Chris Passas · 12 years ago
  31. 2718f6c Update system/core/Log.php by Chris Passas · 12 years ago
  32. 7219232 Update system/core/Common.php by maltzurra · 12 years ago
  33. 0bd6b28 Added support for changing the default log file extension from .php to whatever is preferred. example (.log) by Chris Passas · 12 years ago
  34. aae91a4 Update system/core/Log.php by Chris Passas · 12 years ago
  35. 3683723 core comment error. by Bo-Yi Wu · 12 years ago
  36. 7e55977 Replace CI_Upload::clean_file_name() usage with CI_Security::sanitize_filename() by Andrey Andreev · 12 years ago
  37. 0687911 Replace is_file() with the faster file_exists() (where it makes sense) by Andrey Andreev · 12 years ago
  38. c26d34f Fix issue #2202 and alter Loader Class docs by Andrey Andreev · 12 years ago
  39. 3608e1a Libraries' filenames must be named in a ucfirst-like manner by Andrey Andreev · 12 years ago
  40. 041de07 Merge branch 'develop' of github.com:EllisLab/CodeIgniter into develop by Andrey Andreev · 12 years ago
  41. db529ca Remove unnecessary defined('ENVIRONMENT') checks by Andrey Andreev · 12 years ago
  42. b75e13d Fix newline standardization. by Eric Roberts · 12 years ago
  43. 353f983 Updated all cases of exit() to return a valid code by Daniel Hunsaker · 12 years ago
  44. 9f690f1 Partially implement PR #2155 by Andrey Andreev · 12 years ago
  45. 3ffce98 [ci skip] Manually apply #2162, #2163 by Andrey Andreev · 12 years ago
  46. 5dc6d51 Support minify table block by Purwandi · 12 years ago
  47. 3e6b582 Return spacing on var definitions. by Eric Roberts · 12 years ago
  48. bd6faca Merge branch 'develop' of https://github.com/EllisLab/CodeIgniter into feature/output-cache-improvements by Eric Roberts · 12 years ago
  49. 1228fe2 Replace is_null() with === / !== NULL by vlakoff · 12 years ago
  50. 7a4fb63 Merge branch 'develop' of https://github.com/EllisLab/CodeIgniter into feature/output-cache-improvements by Eric Roberts · 12 years ago
  51. c90e67e Improve output cache. by Eric Roberts · 12 years ago
  52. 5a519db Implement autoload model aliasing (#2117) by Andrey Andreev · 12 years ago
  53. d1e50fa URI->_remove_url_suffix() : more efficient code by vlakoff · 12 years ago
  54. 661f588 URI->_remove_url_suffix() : suffix has to be at the end of uri_string by vlakoff · 12 years ago
  55. 325e91a minor tweaks and optimizations: minimize function calls in _fetch_uri_string(); use constant PHP_SAPI instead of function php_sapi_name() by Ted Wood · 12 years ago
  56. 85adeed Merge pull request #2120 from mikezilla/develop by Andrey Andreev · 12 years ago
  57. 4c22364 Slight performance improvement by moving some class property initialization to the class property declarations rather than setting them in the constructor. Subclasses can always override in their own constructor if they wish to. Is there a reason why it was done the way it was done? A policy that I am not aware of? by Ted Wood · 12 years ago
  58. b19a203 utilize static function variables in Common::log_message() to "cache" log threshold and Log library instance to reduce function calls by Ted Wood · 12 years ago
  59. 4d02e35 Fix MSIE conditionals regex in minify output by Michael Dodge · 12 years ago
  60. 362b800 Revert "Fix MSIE conditionals regex in minify output func" by Michael Dodge · 12 years ago
  61. 8e12c78 Fix MSIE conditionals regex in minify output func by Michael Dodge · 12 years ago
  62. b3ec942 Replaced array_push function reference with a faster ordinary element insertion method by and-ers · 12 years ago
  63. c5b766c Merge pull request #2106 from danhunsaker/feature/uri-extensibility by Andrey Andreev · 12 years ago
  64. 80500af [ci skip] Happy new year by Andrey Andreev · 12 years ago
  65. c82b57b Fixed normalization of headers under Apache by Daniel Hunsaker · 12 years ago
  66. 4279223 Improved extensibility of the URI class by modifying `_uri_assoc()` to (1) not force a specific list of valid options for `$which`, and (2) build the `$segment_array` and `$total_segments` dynamically regardless of the contents of `$which`. by Daniel Hunsaker · 12 years ago
  67. a43417d Minor improvements to the Output class by Andrey Andreev · 12 years ago
  68. 96b9501 issue #2092 : code refinements by Andrew Podner · 12 years ago
  69. ae8c2d9 issue #2092 : Improve/Revise JS and CSS minify method (code refinements) by Andrew Podner · 12 years ago
  70. 58594ed issue #2092 : Improve/Revise JS and CSS minify method by Andrew Podner · 12 years ago
  71. 464a7b7 issue #2092 : Improve/Revise JS and CSS minify method by Andrew Podner · 12 years ago
  72. 79b7027 issue #2092 : Improve/Revise JS and CSS minify method by Andrew Podner · 12 years ago
  73. 72ed4c3 [ci skip] Some micro-optimizations and style changes by Andrey Andreev · 12 years ago
  74. a916250 Merge pull request #2079 from AndrewPodner/develop by Andrey Andreev · 12 years ago
  75. 9dfceda fixes #2078: changing type variable to boolean in protected method by Andrew Podner · 12 years ago
  76. 9a171a0 fixes #2078: formatting / styleguide cleanup (take2) by Andrew Podner · 12 years ago
  77. 7747f0a fixes #2078: formatting / styleguide cleanup by Andrew Podner · 12 years ago
  78. 79503c5 fixes #2078: refinement of the minify function for CSS and scripts. by Andrew Podner · 12 years ago
  79. 638a9d2 Replaced spaces with tabs for indentation and || with OR by brian978 · 12 years ago
  80. 0fb1018 Merge remote-tracking branch 'upstream/develop' into develop by brian978 · 12 years ago
  81. 369b314 Issue #2078: refinement of the minify function for CSS and scripts. by Andrew Podner · 12 years ago
  82. d8dba5d [ci skip] Fix some spaces by Andrey Andreev · 12 years ago
  83. fc7024e Merge pull request #2077 from AndrewPodner/develop by Andrey Andreev · 12 years ago
  84. 4296a65 update for Issue #2064 (changed docblocks which return $this or only call a method that returns $this to @return CI_DB_class_name) by Andrew Podner · 12 years ago
  85. 6a53709 Merge pull request #2069 from willmendesneto/develop by Andrey Andreev · 12 years ago
  86. ae63462 Fix function_usable() by Andrey Andreev · 12 years ago
  87. 11dc139 Minify output in css and javascript code by Will Mendes · 12 years ago
  88. 07ccbe5 Modified regexp to match partial tags by brian978 · 12 years ago
  89. 6caeaad Removed boundary from regexp by brian978 · 12 years ago
  90. 0a83fcc Fixed bug with regexp that matched tags by brian978 · 12 years ago
  91. f50fc73 All the HEX code must be replaced or else some XSS attacks can be successful by brian978 · 12 years ago
  92. 9a214e1 Merge remote-tracking branch 'upstream/develop' into dev/hex_xss by brian978 · 12 years ago
  93. 9515dd3 Fix issue #2061 by Andrey Andreev · 12 years ago
  94. b2280ce Another use of CI_URI::_remove_relative_directory() by Andrey Andreev · 12 years ago
  95. 0bf9cfa Updated formatting and styleguide, thanks narfbg; by CJ · 12 years ago
  96. af3bd3e Bug fix for relative directory removal by chernjie · 12 years ago
  97. 160c7d1 Added small improvement to the _remove_evil_attributes function by brian978 · 12 years ago
  98. 838a9d6 [ci skip] Cleaned some spaces by Andrey Andreev · 12 years ago
  99. 6a38949 Merge pull request #2048 from vlakoff/develop by Andrey Andreev · 12 years ago
  100. 4d9fd19 config->site_url(): remove useless cast by vlakoff · 12 years ago