aboutsummaryrefslogtreecommitdiffstats
path: root/phpBB/assets/javascript/plupload.js
Commit message (Collapse)AuthorAgeFilesLines
* [ticket/12541] Activate attachments tab when files are dropped into textareaPayBas2014-06-021-0/+5
| | | | PHPBB3-12541
* [ticket/12375] Fix broken attachment deletion.Cesar G2014-04-081-4/+1
| | | | | | | | The response is already parsed and when running it through parseJSON returned null prior to 1.9. Now there's an actual error thrown, so the function is returning and thus leaving the attachment row intact. PHPBB3-12375
* Merge pull request #2044 from prototech/ticket/12212Nathan Guse2014-02-201-1/+3
|\ | | | | [ticket/12212] Encode the attachment file name before presenting to user.
| * [ticket/12212] Encode the attachment file name before presenting to user.Cesar G2014-02-181-1/+3
| | | | | | | | | | | | | | | | | | | | | | | | The uploader inserts the file name directly into the page at the moment without handling any HTML special chars that may be in the name. This results in HTML that may be present getting rendered in error messages and the attachments list. This simply causes layout breakage for the user, since the backend takes care of sanitizing the name. Once phpBB returns the file data for the uploaded file, the name in the attachment list gets replaced by the one that phpBB provides. PHPBB3-12212
* | [ticket/12208] Remove file from upload queue if deleted before being uploaded.Cesar G2014-02-171-0/+3
|/ | | | | | | The table row is removed, but the files aren't actually removed from the upload queue, so they get uploaded either way. PHPBB3-12208
* [ticket/12124] IE8 does not support indexOf() for arrays.Cesar G2014-01-281-1/+1
| | | | PHPBB3-12124
* [ticket/12124] The textarea selector is failing in IE8 & 9.Cesar G2014-01-281-1/+1
| | | | PHPBB3-12124
* [ticket/12124] Set attachment data to preserve AJAX delete functionality.Cesar G2014-01-281-4/+4
| | | | PHPBB3-12124
* [ticket/12124] Remove double bang.Cesar G2014-01-251-2/+2
| | | | PHPBB3-12124
* [ticket/12124] Revert to basic uploader if the html5 runtime is not supported.Cesar G2014-01-241-15/+20
| | | | PHPBB3-12124
* [ticket/11915] Pass the data to the template instead of scraping HTML for it.Cesar G2014-01-171-33/+3
| | | | PHPBB3-11915
* [ticket/11915] Replace inline onclick event for inserting attachment bbcodes.Cesar G2014-01-171-1/+11
| | | | PHPBB3-11915
* [ticket/11915] Hide attachments table when removing last failed file.Cesar G2014-01-171-2/+4
| | | | PHPBB3-11915
* [ticket/11915] Make the user aware of the drag-and-drop zone.Cesar G2014-01-171-0/+5
| | | | PHPBB3-11915
* [ticket/11915] Check if trigger_error() was called after sending chunk.Cesar G2014-01-171-0/+5
| | | | PHPBB3-11915
* [ticket/11915] Fix spacing and ensure that strings are translated.Cesar G2014-01-171-20/+20
| | | | PHPBB3-11915
* [ticket/11915] Provide the URL to the attachment when it's uploaded.Cesar G2014-01-171-12/+25
| | | | PHPBB3-11915
* [ticket/11915] Do not allow more files to be added if queue is already runningCesar G2014-01-171-0/+6
| | | | PHPBB3-11915
* [ticket/11915] Update the inline attachment bbcode indices on every upload.Cesar G2014-01-171-0/+55
| | | | PHPBB3-11915
* [ticket/11915] Add the new uploader.Cesar G2014-01-171-237/+542
| | | | PHPBB3-11915
* [ticket/11916] Remove files from hidden attach list after deletionMarc Alexander2013-10-231-20/+43
| | | | | | | | The hidden attachment_data list needs to be updated if a file got removed. This was not done until now and caused a general error after submitting a post if a file was removed after uploading it. PHPBB3-11916
* [feature/plupload/integration] Add missing javascript file.Fyorl2013-10-141-0/+281
PHPBB3-10929