[Release] AJAX Quick Edit 1.0.11

Current Version: 1.0.11
Released: 02/12/2010
User avatar
Marc
Administrator
Administrator
Posts: 620
Joined: Tue 2. Sep 2008, 22:48
phpbb.com: Marc
Location: Munich
Contact:

[Release] AJAX Quick Edit 1.0.11

Post 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 4820 times
Outdated Versions:
[+] Outdated
ajax_quick_edit_v1.0.10.zip
(93.57 KiB) Downloaded 3481 times
ajax_quick_edit_v1.0.10.zip
(93.57 KiB) Downloaded 3615 times



AJAX Quick Edit 1.0.7, 1.0.8 and 1.0.9 have been downloaded 492 times.
Image
User avatar
Marc
Administrator
Administrator
Posts: 620
Joined: Tue 2. Sep 2008, 22:48
phpbb.com: Marc
Location: Munich
Contact:

Re: [Release] AJAX Quick Edit 1.0.9

Post by Marc »

Updated to Version 1.0.9
Image
COD3M4ST3R-X
Moderator
Moderator
Posts: 16
Joined: Wed 29. Apr 2009, 15:35
phpbb.com: COD3M4ST3R-X

Re: [Release] AJAX Quick Edit 1.0.9

Post by COD3M4ST3R-X »

Nice Marc :-D
Goin to test it ASAP ;)

Edit: the Size BBCode is not functioning when using Quick Edit :shock:
User avatar
Marc
Administrator
Administrator
Posts: 620
Joined: Tue 2. Sep 2008, 22:48
phpbb.com: Marc
Location: Munich
Contact:

Re: [Release] AJAX Quick Edit 1.0.9

Post by Marc »

Thanks. Has been fixed. Updated package above.
Image
COD3M4ST3R-X
Moderator
Moderator
Posts: 16
Joined: Wed 29. Apr 2009, 15:35
phpbb.com: COD3M4ST3R-X

Re: [Release] AJAX Quick Edit 1.0.9

Post 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:
User avatar
Marc
Administrator
Administrator
Posts: 620
Joined: Tue 2. Sep 2008, 22:48
phpbb.com: Marc
Location: Munich
Contact:

Re: [Release] AJAX Quick Edit 1.0.9

Post by Marc »

Stop finding bugs. :)

I'll take a look at it. ;)
Image
COD3M4ST3R-X
Moderator
Moderator
Posts: 16
Joined: Wed 29. Apr 2009, 15:35
phpbb.com: COD3M4ST3R-X

Re: [Release] AJAX Quick Edit 1.0.9

Post by COD3M4ST3R-X »

Marc wrote:Stop finding bugs. :)
You can,t stop me :lol:
User avatar
Marc
Administrator
Administrator
Posts: 620
Joined: Tue 2. Sep 2008, 22:48
phpbb.com: Marc
Location: Munich
Contact:

Re: [Release] AJAX Quick Edit 1.0.9

Post 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. ;)
Image
User avatar
Marc
Administrator
Administrator
Posts: 620
Joined: Tue 2. Sep 2008, 22:48
phpbb.com: Marc
Location: Munich
Contact:

Re: [Release] AJAX Quick Edit 1.0.10

Post 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
Image
User avatar
Marc
Administrator
Administrator
Posts: 620
Joined: Tue 2. Sep 2008, 22:48
phpbb.com: Marc
Location: Munich
Contact:

Re: [Release] AJAX Quick Edit 1.0.11

Post 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
Image
Locked