Page 1 of 2

[Release] AJAX Quick Edit 1.0.11

Posted: Mon 4. May 2009, 15:33
by Marc
This MOD has been abandoned, it will not be developed any further. You can still download it, but there won't be any support.


Modification Name: AJAX Quick Edit
Author: marc1706
Former Author: xmave

Modification Description: Adds an option to quickly edit posts without reloading the page.
Modification Version: 1.0.11

Features:
  • Quick Edit Button for a quick edit of your post without reloading the page
  • BBCodes
Language: English, Deutsch

License: GNU General Public License v2

Installation Level: Easy
Installation Time: ~10 Minutes
Format:
Image

Demo URL: http://area51.m-a-styles.de

Modification Download:
ajax_quick_edit_v1.0.11.zip
(95.07 KiB) Downloaded 5062 times
Outdated Versions:
[+] Outdated
ajax_quick_edit_v1.0.10.zip
(93.57 KiB) Downloaded 3719 times
ajax_quick_edit_v1.0.10.zip
(93.57 KiB) Downloaded 3854 times



AJAX Quick Edit 1.0.7, 1.0.8 and 1.0.9 have been downloaded 492 times.

Re: [Release] AJAX Quick Edit 1.0.9

Posted: Wed 12. Aug 2009, 14:33
by Marc
Updated to Version 1.0.9

Re: [Release] AJAX Quick Edit 1.0.9

Posted: Fri 14. Aug 2009, 06:37
by COD3M4ST3R-X
Nice Marc :-D
Goin to test it ASAP ;)

Edit: the Size BBCode is not functioning when using Quick Edit :shock:

Re: [Release] AJAX Quick Edit 1.0.9

Posted: Fri 14. Aug 2009, 11:47
by Marc
Thanks. Has been fixed. Updated package above.

Re: [Release] AJAX Quick Edit 1.0.9

Posted: Thu 20. Aug 2009, 04:55
by COD3M4ST3R-X
Marc i found an other one :-D
When a topic is locked a normal user try,s to edit the topic,the following error is trigerred

Code: Select all

[phpBB Debug] PHP Notice: in file /quickedit.php on line 213: Undefined variable: post_data
TOPIC_LOCKED
:ugeek:

Re: [Release] AJAX Quick Edit 1.0.9

Posted: Thu 20. Aug 2009, 13:55
by Marc
Stop finding bugs. :)

I'll take a look at it. ;)

Re: [Release] AJAX Quick Edit 1.0.9

Posted: Thu 20. Aug 2009, 16:38
by COD3M4ST3R-X
Marc wrote:Stop finding bugs. :)
You can,t stop me :lol:

Re: [Release] AJAX Quick Edit 1.0.9

Posted: Thu 20. Aug 2009, 18:59
by Marc
Anyhow, found the bug:

Open quickedit.php

Find:

Code: Select all

        die(($post_data['forum_status'] == ITEM_LOCKED) ? 'FORUM_LOCKED' : 'TOPIC_LOCKED'); 
Replace with:

Code: Select all

        die($user->lang[(($row['forum_status'] == ITEM_LOCKED) ? 'FORUM_LOCKED' : 'TOPIC_LOCKED')]); 
P.S: That was actually two bugs. ;)

Re: [Release] AJAX Quick Edit 1.0.10

Posted: Tue 29. Dec 2009, 11:09
by Marc
Update to Version 1.0.10:
  • Added "Advanced Edit"-Button
  • Fixed an undefined variable error when trying to edit a locked topic
  • AJAX Quick Edit now checks if the submitted post is too long or too short and redirects to the Quick Edit posting page, including error message
  • Removed useless utf8_recode()
  • Inline attachments are now being parsed by AJAX Quick Edit
  • Using generate_text_for_edit() instead of decode_message()
  • Removed unnecessary occurences of utf8_normalize_nfc()
  • Added missing $user->lang[]
  • Added load image
  • Quickedit now respects minimum and maximum post chars

Re: [Release] AJAX Quick Edit 1.0.11

Posted: Fri 12. Feb 2010, 13:02
by Marc
Updated to version 1.0.11:
  • [Bug] Unable to highlight message
  • [Bug] Inline attachments show only English title
  • [Changed] Added missing update instructions
  • [New] Textarea scrolls into view
  • [Support] AJAX Quick Edit 1.0.7 and 1.0.8 will not be supported anymore