Go Back   vb.org Archive > vBulletin Modifications > Archive > vB.org Archives > vBulletin 3.0 > vBulletin 3.0 Full Releases
FAQ Community Calendar Today's Posts Search

Reply
 
Thread Tools
Quick Edit! -Edit posts directly from within the thread itself Details »»
Quick Edit! -Edit posts directly from within the thread itself
Version: 2.00, by EvilLS1 EvilLS1 is offline
Developer Last Online: May 2021 Show Printable Version Email this Page

Version: 3.0.6 Rating:
Released: 01-03-2004 Last Update: 01-24-2005 Installs: 145
 
No support by the author.

This hack will allow your users to edit their posts without having to load the editpost page..

How it works: In the bottom right-hand corner of all your posts will be a small Quick Edit icon (users will only see it in posts which belong to them).. When you click it a text box will drop down below your post allowing you to edit it instantly in the thread itself.

This will save you a lot of time when fixing those spelling mistakes, typos, or broken links. It should also help save on bandwidth since your users will no longer need to load the editpost page.

Very easy to install.. 2 file edits, 2 template edits, and 1 template to add.

Known bug: Quick Edit will NOT work with Opera web browsers. Those who use Opera simply won't see the option to quick edit (icon will be invisible when viewed in that browser). It'll work fine in other browsers such as IE or firefox.

Support: Due to work my time is limited as of late so this hack is released AS IS with no support. However, several questions have already been answered in this thread.

Update (7-25-04): Fixed a minor bug with the QE window moving further to the left with each click in mozilla/firefox browsers. To update simply replace your showthread_quickedit template with the new one. Thanks to sv1cec for this bug fix.

Add Ons:
*Show the "delete post" option for those who have permission in the Quick Edit form (also adds edit reason). (by sv1cec)
*Show the "edit reason" field in the Quick Edit form. (Requested by Convergys)
*Alternate Quickedit icon image (by ryancooper)
*Another alternate Quickedit icon (by sv1cec)
*Another alternate Quickedit icon (by charlesk)
*Yet another alternate Quickedit icon (by iguanairs)
*Give users the option to disable quick edit in the usercp (by pco)



If you find this hack useful please click the install button.

Screenshot attached:

Show Your Support

  • This modification may not be copied, reproduced or published elsewhere without author's permission.

Comments
  #252  
Old 12-17-2004, 05:24 PM
version2's Avatar
version2 version2 is offline
 
Join Date: Feb 2003
Location: Philly
Posts: 136
Благодарил(а): 0 раз(а)
Поблагодарили: 0 раз(а) в 0 сообщениях
Default

Quote:
Originally Posted by EvilLS1
Version2,
I wish I knew what to tell you in order to fix that but I honestly have no idea. Someone else mentioned having that problem earlier but I can't reproduce it on my own site I have no way to figure out whats causing it. I'll experiment with it some more on my test forum this weekend and try to reproduce it.. If I figure out something I'll let ya know.
Thanks, man. I will investigate it, too.
Reply With Quote
  #253  
Old 01-02-2005, 04:20 PM
Sh3d0w Bl3de Sh3d0w Bl3de is offline
 
Join Date: Nov 2004
Posts: 5
Благодарил(а): 0 раз(а)
Поблагодарили: 0 раз(а) в 0 сообщениях
Default

I think it would be idea to do this:

Replace

Code:
	// Quick Edit hack
	if ($post['userid'] == $bbuserinfo['userid'])
With

Code:
	// Quick Edit hack
	if ($post['userid'] == $bbuserinfo['userid'] OR can_moderate($thread['forumid'], 'caneditposts'))


Regards,
ShadowBlade
Reply With Quote
  #254  
Old 01-03-2005, 04:46 AM
EvilLS1's Avatar
EvilLS1 EvilLS1 is offline
 
Join Date: Apr 2002
Location: Georgia, USA
Posts: 987
Благодарил(а): 0 раз(а)
Поблагодарили: 0 раз(а) в 0 сообщениях
Default

Quote:
Originally Posted by Sh3d0w Bl3de
I think it would be idea to do this:
..............



Regards,
ShadowBlade
I don't. Read the 2nd paragraph in this post to see why I didn't include that in the hack.

Dewayne
Reply With Quote
  #255  
Old 01-04-2005, 06:03 AM
theArchitect's Avatar
theArchitect theArchitect is offline
 
Join Date: Sep 2004
Location: Sydney
Posts: 417
Благодарил(а): 0 раз(а)
Поблагодарили: 0 раз(а) в 0 сообщениях
Default

I have just upgraded to 3.0.4 and it seems to have broken the hack.

When I use the Quick edit function I get this error

Code:
Database error in vBulletin 3.0.4:
 
 Invalid SQL: 
 			UPDATE post
 			SET editlevel = '0',
 	dateline = '39599',
 	username = '',
 	userid = 0,
 	ipaddress = ''
 			WHERE postid = 1
 			LIMIT 1
 		
 mysql error: Unknown column 'editlevel' in 'field list'
 
 mysql error number: 1054
Reply With Quote
  #256  
Old 01-04-2005, 06:24 AM
EvilLS1's Avatar
EvilLS1 EvilLS1 is offline
 
Join Date: Apr 2002
Location: Georgia, USA
Posts: 987
Благодарил(а): 0 раз(а)
Поблагодарили: 0 раз(а) в 0 сообщениях
Default

Quote:
Originally Posted by theArchitect
I have just upgraded to 3.0.4 and it seems to have broken the hack.

When I use the Quick edit function I get this error

Code:
Database error in vBulletin 3.0.4:
 
 Invalid SQL: 
 			UPDATE post
 			SET editlevel = '0',
 	dateline = '39599',
 	username = '',
 	userid = 0,
 	ipaddress = ''
 			WHERE postid = 1
 			LIMIT 1
 		
 mysql error: Unknown column 'editlevel' in 'field list'
 
 mysql error number: 1054

This hack doesn't add or alter any queries or database columns so I'm guessing that error is being caused by another hack. The error means that a query is attempting to update a column (editlevel) which does not exist. What other hacks have you previously installed which have something to do with editing posts?

Have you tried the regular edit to see if it gives the error?

{edit} I believe code added by the "advanced editing options" hack is causing your error:
https://vborg.vbsupport.ru/showthrea...ight=editlevel
Reply With Quote
  #257  
Old 01-04-2005, 08:08 AM
theArchitect's Avatar
theArchitect theArchitect is offline
 
Join Date: Sep 2004
Location: Sydney
Posts: 417
Благодарил(а): 0 раз(а)
Поблагодарили: 0 раз(а) в 0 сообщениях
Default

Quote:
Originally Posted by EvilLS1
This hack doesn't add or alter any queries or database columns so I'm guessing that error is being caused by another hack. The error means that a query is attempting to update a column (editlevel) which does not exist. What other hacks have you previously installed which have something to do with editing posts?

Have you tried the regular edit to see if it gives the error?

{edit} I believe code added by the "advanced editing options" hack is causing your error:
https://vborg.vbsupport.ru/showthrea...ight=editlevel
Thankyou for your assistance. I was just about to suggest that hack.

I think that I am going to have to see if Xenon can either fix it or I will have to drop it. It is very useful by I have hundreds of members who will use the quick edit hack, but only 2 Admins who would use the Advanced options.
Reply With Quote
  #258  
Old 01-04-2005, 08:24 AM
EvilLS1's Avatar
EvilLS1 EvilLS1 is offline
 
Join Date: Apr 2002
Location: Georgia, USA
Posts: 987
Благодарил(а): 0 раз(а)
Поблагодарили: 0 раз(а) в 0 сообщениях
Default

Quote:
Originally Posted by theArchitect
Thankyou for your assistance. I was just about to suggest that hack.

I think that I am going to have to see if Xenon can either fix it or I will have to drop it. It is very useful by I have hundreds of members who will use the quick edit hack, but only 2 Admins who would use the Advanced options.

No problem. I think running this query from Xenon's instructions will fix the error.

ALTER TABLE post ADD editlevel TINYINT(3) DEFAULT '0' NOT NULL;
Reply With Quote
  #259  
Old 01-04-2005, 08:49 AM
theArchitect's Avatar
theArchitect theArchitect is offline
 
Join Date: Sep 2004
Location: Sydney
Posts: 417
Благодарил(а): 0 раз(а)
Поблагодарили: 0 раз(а) в 0 сообщениях
Default

Quote:
Originally Posted by EvilLS1
No problem. I think running this query from Xenon's instructions will fix the error.

ALTER TABLE post ADD editlevel TINYINT(3) DEFAULT '0' NOT NULL;
Thanks for the suggestion. But I have tried that and still get the same.
Reply With Quote
  #260  
Old 01-06-2005, 05:21 PM
rh2004 rh2004 is offline
 
Join Date: Nov 2004
Posts: 154
Благодарил(а): 0 раз(а)
Поблагодарили: 0 раз(а) в 0 сообщениях
Default

Can I have this so only admin's can use it... ?

Also how do I get it to work so admin can edit all posts I tried this...

<phrase 1="$bbuserinfo[username]" 2="$date" 3="$time">$vbphrase['post_edited_by_x_on_y_at_z']</phrase>

but it says

Parse error: parse error, unexpected T_ENCAPSED_AND_WHITESPACE, expecting T_STRING or T_VARIABLE or T_NUM_STRING in /home/username/public_html/forum/includes/adminfunctions_template.php(3055) : eval()'d code on line 41
Reply With Quote
  #261  
Old 01-07-2005, 03:35 AM
EvilLS1's Avatar
EvilLS1 EvilLS1 is offline
 
Join Date: Apr 2002
Location: Georgia, USA
Posts: 987
Благодарил(а): 0 раз(а)
Поблагодарили: 0 раз(а) в 0 сообщениях
Default

Quote:
Originally Posted by rh2004
Can I have this so only admin's can use it... ?


Also how do I get it to work so admin can edit all posts I tried this...


<phrase 1="$bbuserinfo[username]" 2="$date" 3="$time">$vbphrase['post_edited_by_x_on_y_at_z']</phrase>


but it says


Parse error: parse error, unexpected T_ENCAPSED_AND_WHITESPACE, expecting T_STRING or T_VARIABLE or T_NUM_STRING in /home/username/public_html/forum/includes/adminfunctions_template.php(3055) : eval()'d code on line 41
In the code you added to includes/functions_showthread.php replace this:

Code:
if ($post['userid'] == $bbuserinfo['userid'])
...with this:

Code:
if ($bbuserinfo['usergroupid'] == 6)
Reply With Quote
Reply


Posting Rules
You may not post new threads
You may not post replies
You may not post attachments
You may not edit your posts

BB code is On
Smilies are On
[IMG] code is On
HTML code is Off

Forum Jump


All times are GMT. The time now is 10:44 AM.


Powered by vBulletin® Version 3.8.12 by vBS
Copyright ©2000 - 2024, vBulletin Solutions Inc.
X vBulletin 3.8.12 by vBS Debug Information
  • Page Generation 0.04607 seconds
  • Memory Usage 2,324KB
  • Queries Executed 25 (?)
More Information
Template Usage:
  • (1)SHOWTHREAD
  • (1)ad_footer_end
  • (1)ad_footer_start
  • (1)ad_header_end
  • (1)ad_header_logo
  • (1)ad_navbar_below
  • (1)ad_showthread_beforeqr
  • (6)bbcode_code
  • (7)bbcode_quote
  • (1)footer
  • (1)forumjump
  • (1)forumrules
  • (1)gobutton
  • (1)header
  • (1)headinclude
  • (1)modsystem_post
  • (1)navbar
  • (6)navbar_link
  • (120)option
  • (1)pagenav
  • (1)pagenav_curpage
  • (4)pagenav_pagelink
  • (1)pagenav_pagelinkrel
  • (11)post_thanks_box
  • (11)post_thanks_button
  • (1)post_thanks_javascript
  • (1)post_thanks_navbar_search
  • (11)post_thanks_postbit_info
  • (10)postbit
  • (11)postbit_onlinestatus
  • (11)postbit_wrapper
  • (1)spacer_close
  • (1)spacer_open
  • (1)tagbit_wrapper 

Phrase Groups Available:
  • global
  • inlinemod
  • postbit
  • posting
  • reputationlevel
  • showthread
Included Files:
  • ./showthread.php
  • ./global.php
  • ./includes/init.php
  • ./includes/class_core.php
  • ./includes/config.php
  • ./includes/functions.php
  • ./includes/class_hook.php
  • ./includes/modsystem_functions.php
  • ./includes/functions_bigthree.php
  • ./includes/class_postbit.php
  • ./includes/class_bbcode.php
  • ./includes/functions_reputation.php
  • ./includes/functions_post_thanks.php 

Hooks Called:
  • init_startup
  • init_startup_session_setup_start
  • init_startup_session_setup_complete
  • cache_permissions
  • fetch_threadinfo_query
  • fetch_threadinfo
  • fetch_foruminfo
  • style_fetch
  • cache_templates
  • global_start
  • parse_templates
  • global_setup_complete
  • showthread_start
  • showthread_getinfo
  • forumjump
  • showthread_post_start
  • showthread_query_postids
  • showthread_query
  • bbcode_fetch_tags
  • bbcode_create
  • showthread_postbit_create
  • postbit_factory
  • postbit_display_start
  • post_thanks_function_post_thanks_off_start
  • post_thanks_function_post_thanks_off_end
  • post_thanks_function_fetch_thanks_start
  • post_thanks_function_fetch_thanks_end
  • post_thanks_function_thanked_already_start
  • post_thanks_function_thanked_already_end
  • fetch_musername
  • postbit_imicons
  • bbcode_parse_start
  • bbcode_parse_complete_precache
  • bbcode_parse_complete
  • postbit_display_complete
  • post_thanks_function_can_thank_this_post_start
  • pagenav_page
  • pagenav_complete
  • tag_fetchbit_complete
  • forumrules
  • navbits
  • navbits_complete
  • showthread_complete