summaryrefslogtreecommitdiffstats
path: root/system/helpers
AgeCommit message (Collapse)AuthorFilesLines
2012-03-11Revert "Make timespan() helper show fuzzier periods if required"Roger Herbert1-86/+45
This reverts commit 03dbcf0669abdddf6bb459a423b99e7aed73e453.
2012-03-11Make timespan() helper show fuzzier periods if requiredRoger Herbert1-45/+86
2012-03-10Really fix camelize()Andrey Andreev1-1/+1
2012-03-10Fix camelize()Andrey Andreev1-8/+5
2012-03-10Fixed camelize.Phil Sturgeon1-1/+1
2012-03-10Removed quotes from the Content-Type header to support mime-type detection ↵dododedodonl1-1/+1
on android
2012-03-09Merge branch 'develop' of github.com:EllisLab/CodeIgniter into developPhil Sturgeon1-7/+6
2012-03-09Bumped CodeIgniter's PHP requirement to 5.2.4.Phil Sturgeon21-21/+21
Yes I know PHP 5.4 just came out, and yes I know PHP 5.3 has lovely features, but there are plenty of corporate systems running on CodeIgniter and PHP 5.3 still is not widely supported enough. CodeIgniter is great for distributed applications, and this is the highest we can reasonably go without breaking support. PHP 5.3 will most likely happen in another year or so. Fingers crossed on that one anyway...
2012-03-08Merge upstream branchAndrey Andreev15-421/+340
2012-03-07fix + style fixMichiel Vugteveen1-7/+6
2012-03-04Merged develop and fixed conflicts.Phil Sturgeon21-430/+350
2012-03-04Updated with 2.1-stable.Phil Sturgeon1-19/+15
2012-03-04Allow developers to use any string as a separator, not just dashes or ↵tubalmartin1-10/+19
underscores. Backwards compatible when using 'dash' or 'underscore' as string separator. Tests: http://codepad.org/DWcxVH5r
2012-03-04Fixed conflicts.Phil Sturgeon1-3/+2
2012-03-03An even better url_title helper. Tests: http://codepad.org/tuJgvkyNtubalmartin1-20/+7
Changelog entry added for 2.1.1
2012-03-01Remove a PHP_VERSION < 5 check (no longer needed)Andrey Andreev1-16/+6
2012-02-29Change end() usage due to E_STRICT messagesAndrey Andreev1-1/+2
2012-02-29Merge upstream branchAndrey Andreev1-56/+96
2012-02-29Improved plural() and singular().Phil Sturgeon1-56/+96
Avoids double-pluralization using "uncountable words" and better logic.
2012-02-29Add an optional set_mime parameter to force_download()Andrey Andreev1-39/+41
2012-02-16Merge pull request #934 from wilburhimself/developPhil Sturgeon1-1/+1
Fixed error in inflector_helper.php in the singular function.
2012-01-24Revert a space in the license agreement :)Andrey Andreev3-3/+3
2012-01-24Fix bug #195Eric Roberts1-16/+10
Fixes bug #195 regarding non-existent user agent strings when using force_download() helper.
2012-01-20Replace AND with &&Andrey Andreev2-5/+1
2012-01-19Some more cleaningAndrey Andreev3-15/+10
2012-01-17Fixed error in inflector_helper.php in the singular function.Wilbur Suero1-1/+1
The function was excepting $singluar_rules and got $singular_values.
2012-01-10Fix a bug in the File helperAndrey Andreev1-7/+7
2012-01-08Some more misc. stuffAndrey Andreev2-32/+7
2012-01-07Improve typography, url & xml helpersAndrey Andreev3-88/+78
2012-01-06Merge pull request #871 from narfbg/develop-helpers-effPhil Sturgeon3-95/+62
Improve email, file & form helpers
2012-01-06Merge pull request #872 from narfbg/develop-helpers-hilPhil Sturgeon3-76/+33
Improve html, inflector & language helpers
2012-01-06Improve number, path & security helpersAndrey Andreev3-34/+18
2012-01-06Improve html, inflector & language helpersAndrey Andreev3-76/+33
2012-01-06Improve email, file & form helpersAndrey Andreev3-95/+62
2012-01-06Improve array, captcha & cookie helpersAndrey Andreev3-83/+39
2012-01-02Updating copyright date to 2012Greg Aker21-21/+21
2011-12-27Revert "Abstracting the loading of files in the config directory depending ↵Greg Aker5-5/+40
on environments." This reverts commit 5c1aa631c5f5ec2f6b75ba1158178418e50ba11a.
2011-12-25Merge branch 'develop' into feature/unit-testsGreg Aker4-91/+91
2011-12-25Abstracting the loading of files in the config directory depending on ↵Greg Aker5-40/+5
environments.
2011-12-25Fixing soft tabs in a few files.Greg Aker2-46/+46
2011-12-19Fixed year and month seconds for timespan().Eric Barnes1-35/+35
2011-12-19Makes form open properly when empty array of parameters is passedJoel Kallman1-1/+1
Signed-off-by: Joel Kallman <jkallman@eclarian.com>
2011-12-09Added ability to change the separator value in the humanize functionEric Barnes1-9/+9
2011-11-27Merge branch 'refs/heads/develop' into feature/unit-testsEric Barnes1-1/+1
2011-11-27Merge branch 'refs/heads/develop' into feature/unit-testsEric Barnes21-182/+443
Conflicts: user_guide/helpers/number_helper.html
2011-11-24Changed form_open() to compare $action against base_url()John Nicely1-1/+1
Checking for strpos($action, $CI->config->site_url()) === FALSE causes CSRF token to not be added in form_open() output. When site_url()'s first parameter ($uri) is empty, site_url's return value is the base URL plus the $CI->config->item('index_page') value. form_open() and CodeIgniter's URI routing do not require index.php to be in the URL, so any call to form_open() in which the $action parameter does not have index.php will always return false for the strpos() call.
2011-11-17auto_link() learned to recognize more URLs has2k11-1/+1
Problem: auto_link() only works on URLs that are preceded by a new line, space, or open parentheses. As a result the URL in the string below would be missed. 'Google<br />http://www.google.com/' Solution: Add a word boundary to the list of features that can precede a URL. Credit to: @scaryuncledevin, issue #419
2011-11-13Resolved issue 65 - made action on form_open_multipart helper function call ↵Ben Edmunds1-1/+1
optional
2011-11-13Fix invalid date formatSyahril Zulkefli1-1/+1
2011-11-13Fix invalid date formatSyahril Zulkefli1-1/+1