Age | Commit message (Collapse) | Author | Files | Lines | |
---|---|---|---|---|---|
2013-07-28 | Polishing Form helper | vlakoff | 1 | -1/+6 | |
2013-07-28 | Form helper _attributes_to_string() micro-optimization | vlakoff | 1 | -5/+5 | |
As $attributes should be most of the times an array, let's save an is_string() call. | |||||
2013-07-27 | More logical order | vlakoff | 1 | -11/+11 | |
2013-07-27 | Form helper: refactor form_open() and _attributes_to_string() | vlakoff | 1 | -38/+18 | |
2013-07-26 | Fix #2560 | Andrey Andreev | 1 | -2/+10 | |
2013-07-26 | Fix #2558 | Andrey Andreev | 1 | -1/+1 | |
2013-07-23 | Loader changes & optimizations related to issue #2551 | Andrey Andreev | 1 | -1/+1 | |
2013-07-19 | [ci skip] Simplify get_file_info() | Andrey Andreev | 1 | -1/+1 | |
2013-07-18 | Add color customization to the CAPTCHA helper | Andrey Andreev | 1 | -17/+37 | |
Ref: Issue #867 & PRs #1405, #2485 | |||||
2013-07-18 | Micro-optimization on base_url() & site_url() | Andrey Andreev | 1 | -6/+6 | |
2013-07-18 | Add that parameter for real :) | Andrey Andreev | 1 | -1/+1 | |
2013-07-18 | Add an optional parameter to URL helpers base_url() and site_url() ↵ | Andrey Andreev | 1 | -7/+21 | |
(supersedes #2535) | |||||
2013-07-17 | [ci skip] Remove some empty lines | Andrey Andreev | 2 | -2/+2 | |
2013-05-18 | Required arg in between optional ones | Rasmus Lerdorf | 1 | -2/+2 | |
Signed-off-by: Rasmus Lerdorf <rasmus@php.net> | |||||
2013-05-18 | The date_range() function is a bit broken | Rasmus Lerdorf | 1 | -3/+3 | |
Neither $unix_time nor $start_date were defined here Signed-off-by: Rasmus Lerdorf <rasmus@php.net> | |||||
2013-04-14 | final change (extra space) | ash | 1 | -1/+1 | |
2013-04-14 | newline at end | ash | 1 | -1/+1 | |
2013-04-14 | eol | ash | 1 | -1/+0 | |
2013-04-14 | eol 2 | ash | 1 | -0/+1 | |
2013-04-14 | eol test. | ash | 1 | -1/+1 | |
2013-04-10 | removed sanity checks (developer-supplied value, not user input), added ↵ | ash | 1 | -15/+3 | |
changelog entry, changed variable names | |||||
2013-04-10 | typo change | ash | 1 | -3/+3 | |
Uses the same defaults as were hard coded in (8 chars in length, 0-9a-aA-Z). Small change in this file means less code elsewhere when generating random character strings for the captcha word. all existing code will work the same. | |||||
2013-04-10 | Add options in create_captcha() to specify the randomly generated captcha ↵ | ash | 1 | -5/+16 | |
word length and character pool Uses the same defaults as were hard coded in (8 chars in length, 0-9a-aA-Z). Small change in this file means less code elsewhere when generating random character strings for the captcha word. | |||||
2013-03-26 | Merge pull request #2348 from nisheeth-barthwal/feature/nested_keys | Andrey Andreev | 1 | -7/+6 | |
Added Parsing Capabilities to Input class for nested array keys | |||||
2013-03-26 | Code fixes in line with suggestions | nisheeth-barthwal | 1 | -10/+5 | |
2013-03-25 | Simplified notation parsing and other cosmetic fixes | nisheeth-barthwal | 1 | -32/+2 | |
2013-03-24 | Fixed error in form_textarea helper function | Zachary Cardoza | 1 | -1/+0 | |
Reverted from GitHub edited version to remove document line end character. Good to merge now. | |||||
2013-03-24 | Revert "Fixed error in Form Helper textarea function" | Zachary Cardoza | 1 | -1/+2 | |
This reverts commit e15d1be514dad1df7a3c38d6265566692ecf1260. | |||||
2013-03-23 | Removed $recurse parameter in lieu of auto parsing. Changed "provision" entry. | nisheeth-barthwal | 1 | -1/+1 | |
2013-03-22 | Fixed error in Form Helper textarea function | Zach Cardoza | 1 | -2/+1 | |
Function had declaration of unused $name variable which caused errors. | |||||
2013-03-21 | Added array notation for keys in Input library | nisheeth-barthwal | 1 | -5/+39 | |
2013-02-28 | Text helper: convert_accented_characters() optimization | vlakoff | 1 | -5/+8 | |
Thanks to static variables, array_keys() and array_values() are now executed once only. | |||||
2013-02-18 | Fixed form helper variable error | Bo-Yi Wu | 1 | -1/+1 | |
Signed-off-by: Bo-Yi Wu <appleboy.tw@gmail.com> | |||||
2013-02-15 | Fix #2247 | Andrey Andreev | 1 | -6/+3 | |
2013-02-08 | Allow non-string values to be used as captcha words (issue #2215) | Andrey Andreev | 1 | -1/+5 | |
2013-01-29 | Replace is_file() with the faster file_exists() | Andrey Andreev | 4 | -25/+47 | |
(where it makes sense) Also: - Implemented caching of configuration arrays for smileys, foreign characters and doctypes. - Implemented cascading-style loading of configuration files (except for library configs, DB and constants.php). | |||||
2013-01-28 | Fix auto_link() for the Nth time | Andrey Andreev | 1 | -9/+10 | |
- anchor() is for local links and breaks ones that don't have a protocol prefix - Allow :// links (no actual protocol specified) - Further simplified the URL regular expression | |||||
2013-01-28 | Remove unnecessary defined('ENVIRONMENT') checks | Andrey Andreev | 3 | -3/+3 | |
As suggested in issue #2134 & PR #2149 | |||||
2013-01-21 | Adjust regex. | Eric Roberts | 1 | -1/+1 | |
2013-01-19 | Remove whitespace from empty lines. | Eric Roberts | 1 | -5/+5 | |
Signed-off-by: Eric Roberts <eric@cryode.com> | |||||
2013-01-18 | Fix and optimize auto_link() URL helper function. | Eric Roberts | 1 | -31/+22 | |
Signed-off-by: Eric Roberts <eric@cryode.com> | |||||
2013-01-17 | Fix issues #2160, #2161 | Andrey Andreev | 1 | -11/+6 | |
2013-01-01 | [ci skip] Happy new year | Andrey Andreev | 21 | -21/+21 | |
2012-12-08 | While most of CodeIgniter supports protocol-relative URLs, a few URL helpers ↵ | Aaron Adams | 1 | -3/+3 | |
do not. Most notably, redirect('//www.facebook.com/aaronadams') led my browser to https://aaronadams.ca/index.php/www.facebook.com/aaronadams. In this commit, I have fixed the header() helper, along with the anchor() and anchor_popup() helpers, to be compatible with protocol-relative URLs. Signed-off-by: Aaron Adams <aaron@aaronadams.ca> | |||||
2012-12-03 | [ci skip] Cleaned some spaces | Andrey Andreev | 5 | -30/+28 | |
2012-11-26 | Fix some erroneous variable names (sorry) | Andrey Andreev | 1 | -2/+2 | |
2012-11-26 | Language helper lang() to accept optional HTML attributes | Andrey Andreev | 1 | -4/+5 | |
(an improved version of PR #1235) | |||||
2012-11-22 | Added support for stream-like downloads of existing files to force_download() | Andrey Andreev | 1 | -3/+38 | |
Based on code/ideas from PR #365, #1254 | |||||
2012-11-17 | Corrected phpdoc comment for mysql_to_unix() method | webmasterar | 1 | -2/+2 | |
2012-11-12 | Some micro-optimizations | Andrey Andreev | 1 | -2/+2 | |