vb.org Archive

vb.org Archive (https://vborg.vbsupport.ru/index.php)
-   vBulletin 3.0 Full Releases (https://vborg.vbsupport.ru/forumdisplay.php?f=33)
-   -   Quick Reply Multiquote (https://vborg.vbsupport.ru/showthread.php?t=73694)

Xenon 05-09-2005 07:48 AM

i cannot test every browser ;)

actually, i didn't find the time yet to do bugfixing, as i am very busy these weeks...
(damn university)

zetetic 05-09-2005 02:44 PM

Quote:

Originally Posted by Xenon
i cannot test every browser ;)

actually, i didn't find the time yet to do bugfixing, as i am very busy these weeks...
(damn university)

I totally understand it's low on your priority list, I just thought I'd let you know someone out there is hoping for an eventual fix. :)

TwinsForMe 05-09-2005 08:59 PM

It seems to conflict with the /me hack. Is there a way for both to be used?

Xenon 05-10-2005 06:05 PM

erm, there is no conflict between those two hacks.

as you can see on vb.org both are working perfectly together

TwinsForMe 05-10-2005 06:08 PM

When someone uses quick-reply multiquote on a quote that has a /me in it, it reverts to "/me".

Let me go get a screenshot.

Xenon 05-10-2005 06:11 PM

nope, the name stayes as it should.

TwinsForMe 05-10-2005 06:15 PM

Sorry. It isn't your multi-quote hack. It's the other one.

:bangshead:

Xenon 05-10-2005 06:22 PM

ahh :)

Megareus Rex 05-12-2005 05:56 PM

Excellen hack! Works like a charm :)

deathemperor 05-24-2005 05:05 AM

Quote:

Originally Posted by chriswible
I had the same problem with my hack. Luckily, there was a user with apostrophes in his name, so I fixed it before I released it. addcslashes did the trick for me.

care to share it ?

zetetic 05-24-2005 05:19 AM

Quote:

Originally Posted by deathemperor
care to share it ?

I figured out that he means he fixed that problem in his own hack, not this one. I looked at his but couldn't figure out how what he did could be applied to this one, though. :(

zetetic 05-28-2005 09:04 PM

Okay I'm not a skilled coder but here's the workaround I came up with for users who have apostrophes in their names:

Edit functions_showthread.php:

Find:

HTML Code:

// do posts from ignored users
Add Above:

PHP Code:

$post['qrusername'] = addslashes($post['username']); 

Then edit the postbit template:

Find:

HTML Code:

onclick="return doMultiQuote('$post[username]',
Replace with:

HTML Code:

onclick="return doMultiQuote('$post[qrusername]',
This works for me, but use at your own risk. :)

Edited to add: Don't forget to change legacy_postbit too, if you give your users the option to use it. I always forget that. :D

Boofo 05-29-2005 06:01 AM

Quote:

Originally Posted by tmhall
Okay I'm not a skilled coder but here's the workaround I came up with for users who have apostrophes in their names:

Edit functions_showthread.php:

Find:

HTML Code:

// do posts from ignored users
Add Above:

PHP Code:

$post['qrusername'] = addslashes($post['username']); 

Then edit the postbit template:

Find:

HTML Code:

onclick="return doMultiQuote('$post[username]',
Replace with:

HTML Code:

onclick="return doMultiQuote('$post[qrusername]',
This works for me, but use at your own risk. :)

Good one, sir. Thanks! ;)

zetetic 05-29-2005 01:29 PM

Quote:

Originally Posted by Boofo
Good one, sir. Thanks! ;)

Thanks and you're welcome. :)

Lurk 06-02-2005 11:07 PM

Quote:

Originally Posted by tmhall
Edited to add: Don't forget to change legacy_postbit too, if you give your users the option to use it. I always forget that.

Damn, wow... That's amazing.

zetetic 06-02-2005 11:18 PM

Quote:

Originally Posted by Lurk
Damn, wow... That's amazing.

Um... huh? Why's it amazing that I forget to edit the legacy postbit?

sv1cec 06-03-2005 05:27 AM

Quote:

Originally Posted by tmhall
Um... huh? Why's it amazing that I forget to edit the legacy postbit?

I do not know if it is amazing, but it happens to me too, all the time!

On a sidenote, I just install this on 3.0.7 and it works fine. Just one question, I got from reading the previous pages. I saw too many requests for porting this to the WYSIWYG editor. Do you guys get WYSIWIG in the Quck Reply? And if you do, how did you do it? I am using WYSIWYG in the normal reply etc, but I didn't know you can have it in the QR as well.

Rgds

deathemperor 07-01-2005 09:41 AM

Quote:

Originally Posted by sv1cec
On a sidenote, I just install this on 3.0.7 and it works fine. Just one question, I got from reading the previous pages. I saw too many requests for porting this to the WYSIWYG editor. Do you guys get WYSIWIG in the Quck Reply? And if you do, how did you do it? I am using WYSIWYG in the normal reply etc, but I didn't know you can have it in the QR as well.

ACP -> Vboptions -> Message Posting and Editing Options -> Quick Reply Enabled -> Yes - Show Enhanced (WYSIWYG) Editor Toolbar

sv1cec 07-01-2005 09:46 AM

Thank You Sir!

csidlernet 07-20-2005 09:15 AM

goodwork Xenon!

Logikos 08-10-2005 05:25 PM

[high]* Logikos installs since I just found it :)[/high]

Chris M 08-11-2005 01:09 PM

[high]* Chris M does the same lol :p
[/high]

Satan

catocom2 10-04-2005 07:16 PM

This is a great hack.
I'm going to try to port it to 3.5, if it hasn't been done yet, and posted.

moethelawn 10-09-2005 09:50 PM

Quote:

Originally Posted by catocom2
This is a great hack.
I'm going to try to port it to 3.5, if it hasn't been done yet, and posted.

I had this hack installed in my 3.0.7 board but now that it's 3.5 I would like to see a port of this (cause I don't want to add another button for multiquote).... unless this hack does work for 3.5 :D

stan111 10-24-2005 06:19 AM

work like a champ
install it on 3.0.7 without any error

clicked install

zetetic 11-13-2005 06:06 PM

Quote:

Originally Posted by catocom2
I'm going to try to port it to 3.5, if it hasn't been done yet, and posted.

Deathemperor has done that, but apparently it's still a bit buggy.

Steve123 12-01-2005 11:49 AM

It seems that this no longer works in Firefox 1.5?

Can anyone confirm this?

Steve123 12-07-2005 11:36 AM

bump

sv1cec 12-07-2005 01:30 PM

As far as I know it works in the latest version of Mozilla Firefox (1.0.7).

zetetic 12-10-2005 07:29 PM

I noticed it doesn't work in Firefox 1.5 also, so I'm sticking with Firefox 1.0.7 for now.

sv1cec 02-08-2006 06:06 AM

The script does not work in Firefox 1.5, the quoted text is NOT shown in the Quick Reply window. I went back to 1.0.7, due to that, and some other issues I found on Firefox 1.5.x.x.

Any help from the author?

Xenon 02-08-2006 05:36 PM

nope, sorry didn't find a fix for that FF bug yet.

i just hope they will fix it, as i found several other scripts with the same problem, but no fix..

sv1cec 06-29-2007 06:53 AM

Xenon, I know this is a very old hack, and you have probably advanced to later versions of vB, but I am still using 3.0.xx in my site and I do not plan to upgrade any more. Since this is one of the hacks we are using heavily, and since this was brought up in a recent discussion, I have a question for you.

When clicking on the QR icon, without selecting any text, the whole post in which the icon was, is quoted in your reply. Would it be possible, in this case, to show the quoted text in the QR box, just like it does when you have selected some text? I am not good with Javascript so there is nothing much I can do.

Many thanks


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

Powered by vBulletin® Version 3.8.12 by vBS
Copyright ©2000 - 2025, vBulletin Solutions Inc.

X vBulletin 3.8.12 by vBS Debug Information
  • Page Generation 0.01406 seconds
  • Memory Usage 1,791KB
  • Queries Executed 10 (?)
More Information
Template Usage:
  • (1)ad_footer_end
  • (1)ad_footer_start
  • (1)ad_header_end
  • (1)ad_header_logo
  • (1)ad_navbar_below
  • (6)bbcode_html_printable
  • (2)bbcode_php_printable
  • (11)bbcode_quote_printable
  • (1)footer
  • (1)gobutton
  • (1)header
  • (1)headinclude
  • (6)option
  • (1)pagenav
  • (1)pagenav_curpage
  • (2)pagenav_pagelink
  • (1)post_thanks_navbar_search
  • (1)printthread
  • (33)printthreadbit
  • (1)spacer_close
  • (1)spacer_open 

Phrase Groups Available:
  • global
  • postbit
  • showthread
Included Files:
  • ./printthread.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/class_bbcode_alt.php
  • ./includes/class_bbcode.php
  • ./includes/functions_bigthree.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
  • printthread_start
  • pagenav_page
  • pagenav_complete
  • bbcode_fetch_tags
  • bbcode_create
  • bbcode_parse_start
  • bbcode_parse_complete_precache
  • bbcode_parse_complete
  • printthread_post
  • printthread_complete