Age | Commit message (Collapse) | Author | Files | Lines | |
---|---|---|---|---|---|
2011-07-02 | backed out 648b42a75739, which was a NON-trivial whitespace commit. It ↵ | Derek Jones | 1 | -2/+2 | |
broke the Typography class's string replacements, for instance | |||||
2011-04-25 | Fixed double-space typo. | Razican | 1 | -2/+2 | |
2011-04-19 | Removing internal references to the EXT constant. Additionally, marked the ↵ | Greg Aker | 1 | -4/+4 | |
constant as deprecated. Use ".php" instead. Also adding upgrade notes from 2.0.2 to 2.0.3. | |||||
2011-04-06 | Made Environment Support optional. Comment out or delete the constant to ↵ | Phil Sturgeon | 1 | -1/+1 | |
stop environment checks. | |||||
2011-03-22 | Fixed logic and removed the error supressing | Eric Barnes | 1 | -3/+3 | |
2011-03-18 | Fixed coding to match standards from previous releases | Eric Barnes | 1 | -2/+2 | |
2011-03-17 | load config files from environment specific locations in core classes, ↵ | bubbafoley | 1 | -1/+10 | |
helpers and libraries | |||||
2011-02-14 | Whitespace cleanup for code consistency | Pascal Kriete | 1 | -1/+1 | |
2011-01-05 | Hey look, it's 2011 | Greg Aker | 1 | -1/+1 | |
2010-11-10 | Updating PHP requirements in files 5.1.6 | Greg Aker | 1 | -1/+1 | |
2010-10-04 | Cleanup of stray spaces and tabs | Barry Mieny | 1 | -35/+35 | |
2010-04-09 | Modified get_file_info in the file helper, changing filectime() to ↵ | Robin Sowell | 1 | -1/+1 | |
filemtime() for dates. | |||||
2010-03-03 | code comments fix | Derek Jones | 1 | -2/+2 | |
2010-01-17 | change already made - revert | Derek Allard | 1 | -1/+1 | |
2010-01-17 | making get_mime_by_extension case insensitive | Derek Allard | 1 | -1/+1 | |
2010-01-15 | Update to file helper to return FALSE on failure. | Greg Aker | 1 | -2/+6 | |
2010-01-05 | updated copyrights | Derek Jones | 1 | -1/+1 | |
2009-11-27 | non-backwards compatible change to get_dir_file_info() for performance ↵ | Derek Jones | 1 | -6/+8 | |
reasons, as well as fixing recursive bug | |||||
2009-09-25 | Made get_mime_by_extension() case insensitive. | Derek Allard | 1 | -1/+1 | |
2009-04-22 | updated copyrights to 2009 | Derek Jones | 1 | -1/+1 | |
2009-04-21 | switched some hard /'s to DIRECTORY_SEPARATOR | Derek Jones | 1 | -14/+13 | |
2009-02-10 | declared $_filedata as static so it can work properly with recursion through ↵ | Derek Jones | 1 | -1/+1 | |
subdirectories http://codeigniter.com/bug_tracker/bug/6592/ | |||||
2008-11-13 | Changing EOL style to LF | Derek Allard | 1 | -464/+464 | |
2008-10-06 | Added some code to ignore empty folders when deleting directories | Rick Ellis | 1 | -1/+5 | |
2008-09-13 | updated copyright | Rick Ellis | 1 | -1/+1 | |
2008-08-21 | whitespace fixes | Derek Allard | 1 | -52/+52 | |
a minor re-ordering of the changelog | |||||
2008-05-29 | added error suppression to fopen() in write_file() | Derek Jones | 1 | -1/+1 | |
2008-05-13 | Some sweeping syntax changes for consistency: | Derek Jones | 1 | -19/+19 | |
(! foo) changed to ( ! foo) || changed to OR changed newline standardization code in various places from preg_replace to str_replace | |||||
2008-05-11 | Removed closing PHP tags, replaced with a comment block identifying the end ↵ | Derek Jones | 1 | -2/+4 | |
of the file | |||||
2008-05-11 | Undoing change committed in r1115 | Derek Jones | 1 | -0/+1 | |
2008-05-11 | removed closing PHP tag from all framework files | Derek Jones | 1 | -1/+0 | |
2008-05-08 | added symbolic_permissions() and octal_permissions() to the File helper | Derek Jones | 1 | -0/+88 | |
2008-05-06 | Flipped user guide page titles for easier recognition in tabs: | Derek Jones | 1 | -1/+1 | |
<title>CodeIgniter User Guide : Page TItle</title> to <title>Page Title : CodeIgniter User Guide</title> | |||||
2008-05-05 | tweak to the new fopen mode constant names | Derek Jones | 1 | -2/+2 | |
2008-05-05 | implemented fopen mode constants | Derek Jones | 1 | -3/+3 | |
2008-05-05 | Added get_dir_file_info(), get_file_info(), and get_mime_by_extension() to ↵ | Derek Allard | 1 | -7/+174 | |
the File Helper. Changed ( ! condition) into (! condition) within the code | |||||
2008-04-01 | Modified get_filenames() to use DIRECTORY_SEPARATOR constant instead of '/' ↵ | Derek Jones | 1 | -2/+2 | |
for better cross-platform compatibility | |||||
2008-03-28 | moved the $_recursion conditional in get_filenames() to fix a bug where a ↵ | Derek Jones | 1 | -9/+8 | |
bad submitted path would result in the system using / as the source directory. | |||||
2008-03-27 | Fixed bug #4350 in get_filenames() when the $source_dir does not include a ↵ | Derek Jones | 1 | -2/+6 | |
trailing slash | |||||
2008-02-27 | fixed recursion in get_filenames() (bug #3523) | Derek Jones | 1 | -4/+9 | |
2008-02-21 | fix $FALSE to FALSE | Derek Allard | 1 | -1/+1 | |
2008-02-20 | modified get_filenames() to return FALSE if the directory cannot be read | Derek Jones | 1 | -0/+4 | |
2008-01-29 | fixed bug #3314 where the top level path would be deleted along with files ↵ | Derek Jones | 1 | -3/+2 | |
in delete_files() | |||||
2008-01-28 | added ability to "extend" helpers | Derek Jones | 1 | -63/+75 | |
* modified Loader to check for prefixed helpers in application/helpers folder * surrounded provided helper functions with if (! function_exists('foo')) conditionals so the user's helper functions take precedent. | |||||
2008-01-28 | added is_really_writable() to Common.php, replaced is_writable() throughout ↵ | Derek Jones | 1 | -35/+0 | |
application with is_really_writable() | |||||
2008-01-22 | Fixed bug #3289 where temp files in directories being tested with ↵ | Derek Jones | 1 | -0/+2 | |
is_really_writable() were not being handled properly | |||||
2008-01-21 | replaced www.codeigniter.com with codeigniter.com | Derek Jones | 1 | -3/+3 | |
2008-01-18 | ExpressionEngine Dev Team in credit | Derek Allard | 1 | -2/+2 | |
2008-01-09 | fix for is_really_writable | Derek Allard | 1 | -0/+35 | |
2008-01-01 | Fixed a bug in get_filenames() in the File Helper where the array wasn't ↵ | Derek Allard | 1 | -1/+1 | |
cleared after each call. |