summaryrefslogtreecommitdiffstats
path: root/system
AgeCommit message (Collapse)AuthorFilesLines
2009-02-17Committed Cart ClassRick Ellis1-0/+528
2009-02-16Added the ability to pass $config['file_name'] for the File Uploading Class ↵Derek Allard1-3/+4
and rename the uploaded file.
2009-02-16changes to allow file name changing in upload, extension preservedDerek Allard1-2/+8
2009-02-15experimental rename upload fileDerek Allard1-1/+1
2009-02-11switched from gettype() to is_* for testing type in escape()Derek Jones1-9/+12
2009-02-11Prep for 1.7.1 releaseDerek Jones1-1/+1
2009-02-10declared $_filedata as static so it can work properly with recursion through ↵Derek Jones1-1/+1
subdirectories http://codeigniter.com/bug_tracker/bug/6592/
2009-02-10changed exit() to show_error() in _filter_uri()Derek Jones1-1/+1
http://codeigniter.com/bug_tracker/bug/6500/
2009-02-10fixed a bug in the regex pattern to converts tabs and spaces into a single spaceDerek Jones1-1/+1
http://codeigniter.com/bug_tracker/bug/6662/
2009-02-10switched from substr() to rtrim() in _write_headers() so that the last ↵Derek Jones1-1/+1
$this->newline is fully stripped when the "mail" protocol is used, regardless of whether \r, \n, or \r\n is used. http://codeigniter.com/bug_tracker/bug/6669/
2009-02-10didn't mean to completely remove the CI superobject from get_cookie...Derek Jones1-0/+2
2009-02-10added global cookie prefix to get_cookie() unless the cookie exists as-requestedDerek Jones1-2/+8
2009-02-10"optimized" explode_name()Derek Jones1-20/+4
2009-02-10Changed the algorithm used in _reset_post_array() to no longer rely on ↵Derek Jones1-20/+11
eval(), plugging an arbitrary script execution hole http://codeigniter.com/bug_tracker/bug/6068/
2009-02-10Added trailing periods as characters to be removed in url_title()Derek Jones1-2/+3
Removed an extraneous Å character from the file that crept in from somewhere
2009-02-10changed redirect() to only force site_url() when the supplied URL doesn't ↵Derek Jones1-2/+7
start with an http protocol, allowing you to use the helper for external URLs.
2009-02-10udpated xss_clean() in the security helper to pass $is_image instead of the ↵Derek Jones1-3/+3
deprecated $charset http://codeigniter.com/bug_tracker/bug/6706/
2009-02-10added an additional newline for MUAs that require a double line break ↵Derek Jones1-3/+3
between multipart headers and the ignored MIME message area http://codeigniter.com/bug_tracker/bug/6681/
2009-02-10fixed bug with routed URI segments when the default controller was accessed ↵Derek Jones1-11/+15
without the controller name in the URL http://codeigniter.com/bug_tracker/bug/6517/
2009-02-10Fixed a bug in plural() with words that end in yDerek Jones1-1/+3
http://codeigniter.com/bug_tracker/bug/6342/
2009-02-10fixed check for a method named 'field_names' which doesn't exist to ↵Derek Jones1-1/+1
'list_fields' which is the correct method. http://codeigniter.com/bug_tracker/bug/5787/
2009-02-10added sanity check for images in is_allowed_filetype() using getimagesize()Derek Jones1-2/+13
2009-02-10Changed the default "type" of form_button() to "button" from "submit" in the ↵Derek Allard1-1/+1
form helper.
2009-02-05wrong var fixDerek Allard1-1/+1
2009-02-05... replaced $CFG->item() with config_item()Derek Jones1-4/+2
2009-02-05replaced $this->config-> with $CFG-> in ip_address()Derek Jones1-2/+4
2009-02-05Added the ability to have optgroups in form_dropdown() within the form helper.Derek Allard1-3/+18
2009-02-04changed your-site.com to example.comDerek Jones1-1/+1
2009-02-04added proxy_ips config item to whitelist reverse proxy servers to use the ↵Derek Jones2-2/+22
HTTP_X_FORWARDED_FOR header safely to determine the visitor's IP address
2009-02-04improvements to xss_clean()Derek Jones1-5/+6
2009-02-03DB count_all() not returns an integer alwaysDerek Allard9-44/+85
Added some syntactical improvements within DB (braces) Fixed a bug when doing 'random' on order_by() (#5706). Fixed a bug where adding a primary key through Forge could fail (#5731). Fixed a bug when using DB cache on multiple databases (#5737).
2009-02-03tweak to ascii_to_entities() for low ascii entitiesDerek Jones1-1/+11
2009-02-03Fixed a bug where the end character was being added when the character ↵Derek Jones1-4/+6
limit's limit intersected the last word of the string. http://expressionengine.com/forums/viewthread/103748/
2009-02-02replaced all sizeof() in favor of count() - aliases are teh sux0rDerek Jones4-20/+20
2009-01-21Fixed a bug affecting some locales where word censoring would not work on ↵Derek Jones1-5/+12
words beginning or ending with an accented character.
2009-01-16Added 'application/msexcel' to config/mimes.php for .xls files.Derek Allard1-1/+1
2009-01-15Fixed a bug when an opening quote is preceded by a paragraph tag and ↵Derek Jones1-4/+4
immediately followed by another tag.
2009-01-14adjustments to auto_typography() to handle beginning and end lines that ↵Derek Jones1-10/+21
contain, but do not start/finish with block level elements.
2008-12-15Fixed a bug in database escaping where a compound statement (ie: SUM()) ↵Derek Allard1-11/+11
wasn't handled correctly with database prefixes.
2008-12-12(no commit message)Derek Allard1-0/+10
2008-12-11more accurate HTML comment restorationDerek Jones1-2/+5
2008-12-11fixed   cleanup preceding block elements, regex was using [] instead of ()Derek Jones1-2/+2
2008-12-11performance tweaksDerek Jones1-24/+35
2008-12-11various typography bugs, HTML comment parsing, <pre> parsing, more accurate ↵Derek Jones1-12/+29
block matching, etc.
2008-12-09added $lowercase parameter to url_title() to allow forced lowercaseDerek Jones1-1/+6
2008-12-09added some better error checking for saving files with GDDerek Jones2-3/+16
2008-12-05fixed a bug where whitespace would be lost if a string was forced into a ↵Derek Jones1-1/+1
character entity e.g. &foo you know? would become &foo;you know? instead of &foo; you know?
2008-12-01Removed a strict type check from the rotate() function of the Image ↵Derek Allard1-1/+1
Manipulation Class.
2008-11-20Added where_in to the list of expected arguments received by delete()Derek Allard1-1/+1
2008-11-18better error messages for sendmail failureDerek Jones2-1/+3