Age | Commit message (Collapse) | Author | Files | Lines | |
---|---|---|---|---|---|
2008-06-06 | Form helper refactored to allow form_open() and form_fieldset() to accept ↵ | Derek Allard | 1 | -19/+51 | |
arrays or strings as arguments. | |||||
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 | 19 | -238/+244 | |
(! foo) changed to ( ! foo) || changed to OR changed newline standardization code in various places from preg_replace to str_replace | |||||
2008-05-12 | removed an ereg from config | Derek Allard | 1 | -3/+3 | |
added a qualifier to a str_replace for \t in Input changed substr to strncmp in Codeigniter.php and directory_map function added braces in an if statement of unit test Removed "scripts" from the auto-load search path. Scripts were deprecated in Version 1.4.1 (September 21, 2006). If you still need to use them for legacy reasons, they must now be manually loaded in each Controller. | |||||
2008-05-11 | Removed closing PHP tags, replaced with a comment block identifying the end ↵ | Derek Jones | 19 | -20/+58 | |
of the file | |||||
2008-05-11 | Undoing change committed in r1115 | Derek Jones | 19 | -0/+19 | |
2008-05-11 | removed closing PHP tag from all framework files | Derek Jones | 19 | -19/+0 | |
2008-05-08 | added symbolic_permissions() and octal_permissions() to the File helper | Derek Jones | 1 | -0/+88 | |
2008-05-07 | removed default title= attribute from anchor() in URL Helper | Derek Jones | 1 | -5/+1 | |
2008-05-07 | fixed a typo with a variable in the compatibility helper | Derek Jones | 1 | -2/+2 | |
2008-05-06 | Added a Compatibility Helper | Derek Jones | 1 | -0/+496 | |
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-06 | fixed a bug where the dir resource was not closed in the directory helper, ↵ | Derek Jones | 1 | -3/+12 | |
and made it more efficient http://codeigniter.com/bug_tracker/bug/4206/ | |||||
2008-05-06 | Changed the radio() and checkbox() functions to default to not checked by ↵ | Derek Allard | 1 | -2/+2 | |
default. | |||||
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 | 14 | -60/+227 | |
the File Helper. Changed ( ! condition) into (! condition) within the code | |||||
2008-05-01 | revert... Derek's an idiot | Derek Allard | 1 | -2/+1 | |
2008-05-01 | another change to the download helper for compatibility | Derek Allard | 1 | -1/+2 | |
2008-04-27 | Added the ability to include an optional HTTP Response Code in the ↵ | Derek Allard | 1 | -2/+4 | |
redirect() function of the URL Helper. | |||||
2008-04-18 | The Download helper now exits within force-download(). | Derek Allard | 1 | -1/+1 | |
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-30 | Fixed a bug in link_tag() of the URL helper where a key was passed instead ↵ | Derek Allard | 1 | -1/+1 | |
of a value. | |||||
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-03-18 | added form_button to form helper | Derek Allard | 1 | -0/+27 | |
2008-03-06 | Modified img() in the HTML Helper to remove an unneeded space. | Derek Allard | 2 | -2/+2 | |
Modified anchor() in the URL helper to convert entities in the title attribute. | |||||
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-02-11 | added Path Helper | Derek Allard | 1 | -0/+70 | |
2008-01-30 | added img() to HTML helper | Derek Allard | 1 | -22/+29 | |
2008-01-30 | remove stylesheet() so as not to overly pollute function names, rename ↵ | Derek Allard | 1 | -21/+2 | |
link() to link_tag() to avoid PHP collision. | |||||
2008-01-30 | added stylesheet() to html helper | Derek Allard | 1 | -2/+24 | |
2008-01-30 | Added link() to the HTML helper. | Derek Allard | 1 | -4/+126 | |
2008-01-30 | Fixed a bug (#1872) where word_limiter() was not retaining whitespace. | Derek Jones | 1 | -13/+7 | |
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-29 | Fixed a bug (#3328) where the smiley helper might return an undefined variable. | Derek Allard | 1 | -1/+1 | |
2008-01-28 | added ability to "extend" helpers | Derek Jones | 17 | -1370/+1638 | |
* 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 | further refinement to highlight_code()'s regex replacements | Derek Jones | 1 | -3/+2 | |
2008-01-22 | modified markers in highlight_code() to not introduce unintended ↵ | Derek Jones | 1 | -5/+4 | |
highlighting, and to allow code where the first line is a code comment to be styled properly | |||||
2008-01-22 | fixed bug #3156 in highlight_code() where PHP tags were not being converted ↵ | Derek Jones | 1 | -5/+8 | |
properly. Also added protection for asp and inline style script delimiters, and removed an empty span to make outputted code valid | |||||
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 | 17 | -52/+52 | |
2008-01-19 | added email helper | Derek Allard | 1 | -0/+54 | |
2008-01-19 | Fixed a bug in the Typography Helper where unordered list was listed "un" ↵ | Derek Allard | 1 | -1/+1 | |
(#3267) | |||||
2008-01-18 | typo fix: stering to string | Derek Allard | 1 | -1/+1 | |
2008-01-18 | ExpressionEngine Dev Team in credit | Derek Allard | 16 | -32/+694 | |
2008-01-18 | added check for "multiple" attribute in form_dropdown() (bug# 3261) | Derek Allard | 1 | -1/+2 | |