Current Version: 1.0.11
Released: 02/12/2010
-
Marc
- Administrator
- Posts: 620
- Joined: Tue 2. Sep 2008, 22:48
- phpbb.com: Marc
- Location: Munich
-
Contact:
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:
Demo URL: http://area51.m-a-styles.de
Modification Download:
Outdated Versions:
- [+] Outdated
-
AJAX Quick Edit 1.0.7, 1.0.8 and 1.0.9 have been downloaded 492 times.
-
Marc
- Administrator
- Posts: 620
- Joined: Tue 2. Sep 2008, 22:48
- phpbb.com: Marc
- Location: Munich
-
Contact:
Post
by Marc »
Updated to Version 1.0.9
-
COD3M4ST3R-X
- Moderator
- Posts: 16
- Joined: Wed 29. Apr 2009, 15:35
- phpbb.com: COD3M4ST3R-X
Post
by COD3M4ST3R-X »
Nice Marc
Goin to test it ASAP
Edit: the Size BBCode is not functioning when using Quick Edit
-
Marc
- Administrator
- Posts: 620
- Joined: Tue 2. Sep 2008, 22:48
- phpbb.com: Marc
- Location: Munich
-
Contact:
Post
by Marc »
Thanks. Has been fixed. Updated package above.
-
COD3M4ST3R-X
- Moderator
- Posts: 16
- Joined: Wed 29. Apr 2009, 15:35
- phpbb.com: COD3M4ST3R-X
Post
by COD3M4ST3R-X »
Marc i found an other one
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
-
Marc
- Administrator
- Posts: 620
- Joined: Tue 2. Sep 2008, 22:48
- phpbb.com: Marc
- Location: Munich
-
Contact:
Post
by Marc »
Stop finding bugs.
I'll take a look at it.
-
COD3M4ST3R-X
- Moderator
- Posts: 16
- Joined: Wed 29. Apr 2009, 15:35
- phpbb.com: COD3M4ST3R-X
Post
by COD3M4ST3R-X »
Marc wrote:Stop finding bugs.
You can,t stop me
-
Marc
- Administrator
- Posts: 620
- Joined: Tue 2. Sep 2008, 22:48
- phpbb.com: Marc
- Location: Munich
-
Contact:
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.
-
Marc
- Administrator
- Posts: 620
- Joined: Tue 2. Sep 2008, 22:48
- phpbb.com: Marc
- Location: Munich
-
Contact:
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
-
Marc
- Administrator
- Posts: 620
- Joined: Tue 2. Sep 2008, 22:48
- phpbb.com: Marc
- Location: Munich
-
Contact:
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