Age | Commit message (Collapse) | Author | Files | Lines | |
---|---|---|---|---|---|
2012-06-07 | Fixed valid_ip() for PHP < 5.2 | Andrey Andreev | 1 | -22/+21 | |
2012-06-07 | Documenting IPv6 changes and adding update notes. | Pascal Kriete | 4 | -1/+94 | |
2012-06-07 | Adding IPv6 support to the Input and Form_validation libraries. | Pascal Kriete | 4 | -7/+136 | |
2012-05-27 | Merge branch '2.1-stable' of github.com:EllisLab/CodeIgniter into 2.1-stable | Phil Sturgeon | 1 | -1/+1 | |
2012-05-27 | Driver_Library had $lib_name set as static, and used non-static | Phil Sturgeon | 1 | -1/+1 | |
2012-05-27 | Fix an erroneus method name | Andrey Andreev | 1 | -1/+1 | |
2012-05-24 | Merge branch '2.1-stable' of github.com:EllisLab/CodeIgniter into 2.1-stable | Phil Sturgeon | 5 | -15/+18 | |
2012-05-24 | Stop travis trying to run unit tests on 2.1-stable. | Phil Sturgeon | 1 | -0/+4 | |
2012-05-24 | Fix issue #1387 | Andrey Andreev | 3 | -14/+16 | |
2012-05-24 | Merge pull request #1389 from jamiefdhurst/2.1-stable | Phil Sturgeon | 2 | -1/+2 | |
Adding width and height to list of clear variables to fix #1059 | |||||
2012-05-24 | Updating change log relating to #1059. | Jamie Hurst | 1 | -0/+1 | |
2012-05-24 | Adding width and height to list of clear variables to fix #1059 | Jamie Hurst | 1 | -1/+1 | |
2012-05-23 | Removed the starting slash from uri_string() documentation. | Phil Sturgeon | 1 | -1/+1 | |
2012-05-23 | Added ability to _like paramater side to use 'none', in case one wants to ↵ | Nithin | 1 | -2/+6 | |
query like instead of where without case being sensitive | |||||
2012-05-20 | Merge pull request #1331 from rogeriopradoj/patch-1 | Phil Sturgeon | 3 | -3/+25 | |
Workaround for PDO Driver in 2.1-stable: num_rows doesn't work for SELECT queries | |||||
2012-05-19 | Fix a issue with CI_DB_pdo_result::num_rows() | Rogerio Prado de Jesus | 2 | -1/+13 | |
In case of SELECT queries PDOStatement::rowCount doesn't work as expected. This commit makes it returns the expected value. | |||||
2012-05-19 | Fix a issue with affect_rows in CI_DB_pdo_driver::_execute() | Rogerio Prado de Jesus | 2 | -2/+12 | |
In case of SELECT queries PDOStatement::rowCount doesn't work as expected. This commit makes affect_rows be initialized properly. Signed-off-by: Rogerio Prado de Jesus <rogeriopradoj@gmail.com> | |||||
2012-05-19 | Fix issue #726 | Andrey Andreev | 2 | -8/+9 | |
2012-05-17 | Move some functions from file_mod to file controller | Florian Pritz | 3 | -212/+210 | |
Models shouldn't really call views Signed-off-by: Florian Pritz <bluewind@xinu.at> | |||||
2012-05-17 | improve is_cli_client() and use everywhere | Florian Pritz | 3 | -17/+23 | |
Signed-off-by: Florian Pritz <bluewind@xinu.at> | |||||
2012-05-17 | Merge branch 'release/2.1.1' | Phil Sturgeon | 163 | -359/+560 | |
2012-05-17 | Added upgrade for 2.1.1 and updated version. | Phil Sturgeon | 155 | -299/+391 | |
2012-05-17 | Merge pull request #1366 from aphofstede/2.1-stable | Andrey Andreev | 2 | -1/+2 | |
Check cookie against md5 regex. 2.1 stable CSRF injection security fix | |||||
2012-05-17 | Use tabs for indenting | Alexander Hofstede | 1 | -1/+1 | |
2012-05-17 | Revert "Use tab for indent" | Alexander Hofstede | 3 | -16/+1 | |
This reverts commit c3eb672ed01c57a543dd8cdf1b90eb4001498c19. | |||||
2012-05-17 | Use tab for indent | Alexander Hofstede | 3 | -1/+16 | |
2012-05-17 | Check cookie against md5 regex. | Alexander Hofstede | 2 | -1/+2 | |
Otherwise, cookie can contain arbitrary injected code that gets sent back directly to the browser. | |||||
2012-05-15 | Ignore etags when displaying HTML pages | Florian Pritz | 1 | -1/+3 | |
This allows the html page to change (user logged in/not logged in), but still keeps etag support for content that's really going to stay the same (images, plain file content, qr codes for urls) Signed-off-by: Florian Pritz <bluewind@xinu.at> | |||||
2012-05-12 | Hide notice when getting key from memcache | Florian Pritz | 1 | -1/+9 | |
This looks horrible, but gets the job done... Signed-off-by: Florian Pritz <bluewind@xinu.at> | |||||
2012-05-12 | fix missing object initialization and properly declare class variables | Florian Pritz | 3 | -3/+11 | |
var is deprecated since ages and in strict mode we have to initialize $this->var as a generic object before using it. Signed-off-by: Florian Pritz <bluewind@xinu.at> | |||||
2012-05-10 | Prevent browsers from deleting files | Florian Pritz | 1 | -0/+5 | |
CLI clients are expected to only request deletion when the users wants it. Signed-off-by: Florian Pritz <bluewind@xinu.at> | |||||
2012-05-10 | Replace timeout (delete) link with info link | Florian Pritz | 1 | -1/+2 | |
The delete link won't ask for confirmation anymore, so don't use it. Signed-off-by: Florian Pritz <bluewind@xinu.at> | |||||
2012-05-07 | Added a return false if an image doesn't pass XSS cleaning to prevent ↵ | Wes Baker | 1 | -0/+4 | |
file_get_contents from returning a NULL and passing through unscathed. | |||||
2012-05-05 | Rework file deletion; allow to delete multiple IDs at once | Florian Pritz | 6 | -82/+119 | |
This removes the old form which was used to delete a single upload and replaces it with checkboxes on the history page. All checked IDs will be removed at once, instead of requiring the user to click through multiple pages. The old file/delete page is kept for compatibility with CLI clients. Signed-off-by: Florian Pritz <bluewind@xinu.at> | |||||
2012-05-03 | user/hash_password: add form to support normal browsers | Florian Pritz | 2 | -2/+42 | |
Signed-off-by: Florian Pritz <bluewind@xinu.at> | |||||
2012-05-03 | document ID/info mode | Florian Pritz | 2 | -4/+10 | |
Signed-off-by: Florian Pritz <bluewind@xinu.at> | |||||
2012-05-03 | remove password column from `files` | Florian Pritz | 2 | -1/+22 | |
Signed-off-by: Florian Pritz <bluewind@xinu.at> | |||||
2012-05-03 | add ID/info to display more information about a file | Florian Pritz | 3 | -21/+45 | |
The table is shared with the old delete_form, but it doesn't display the delete button in info mode. Signed-off-by: Florian Pritz <bluewind@xinu.at> | |||||
2012-05-01 | use function to generate links to css files | Florian Pritz | 4 | -4/+15 | |
Signed-off-by: Florian Pritz <bluewind@xinu.at> | |||||
2012-05-01 | move file link generation from controller to view | Florian Pritz | 2 | -12/+7 | |
Signed-off-by: Florian Pritz <bluewind@xinu.at> | |||||
2012-05-01 | move etag handling into handle_etag() | Florian Pritz | 1 | -27/+23 | |
Signed-off-by: Florian Pritz <bluewind@xinu.at> | |||||
2012-04-23 | Merge pull request #1274 from Repox/2.1-stable | Phil Sturgeon | 1 | -1/+1 | |
Corrected the migration_missing_down_method language string | |||||
2012-04-23 | Corrected the migration_missing_down_method language string | Repox | 1 | -1/+1 | |
2012-04-21 | Disable cache for upload_history for now. | Florian Pritz | 1 | -1/+3 | |
Signed-off-by: Florian Pritz <bluewind@xinu.at> | |||||
2012-04-15 | upload_hstory: Initialize $lengths correctly | Florian Pritz | 2 | -11/+22 | |
If you only uploaded short filenames "Filename" could e longer than any filename, resulting in a broken table. Signed-off-by: Florian Pritz <bluewind@xinu.at> | |||||
2012-04-14 | Make sure we keep the uri flashdata | Florian Pritz | 1 | -0/+1 | |
Signed-off-by: Florian Pritz <bluewind@xinu.at> | |||||
2012-04-14 | claim_id: Fix wrong variable name | Florian Pritz | 1 | -1/+1 | |
Signed-off-by: Florian Pritz <bluewind@xinu.at> | |||||
2012-04-14 | cron: Remove expired, unowned files | Florian Pritz | 1 | -4/+10 | |
Unowned files expire whenever a session expires because the user won't be able to reclaim them anymore. Signed-off-by: Florian Pritz <bluewind@xinu.at> | |||||
2012-04-14 | Allow to keep and reclaim uploads without being logged in | Florian Pritz | 3 | -8/+59 | |
If a user keeps the browser open until his session expires and then tries to upload something we now add it to the database, add the ID to the new session and when someone logs in with that session the ID is assigned. Until then even if you guess it correctly, you won't be able to download it. If the user still manages to let the 2nd session expire because he can't find his password, the upload will be lost. Shit happens. Signed-off-by: Florian Pritz <bluewind@xinu.at> | |||||
2012-04-14 | v/upload_form: Reword primary goal | Florian Pritz | 1 | -1/+1 | |
Signed-off-by: Florian Pritz <bluewind@xinu.at> |