vb.org Archive

vb.org Archive (https://vborg.vbsupport.ru/index.php)
-   Modification Requests/Questions (Unpaid) (https://vborg.vbsupport.ru/forumdisplay.php?f=112)
-   -   Link not open new window in certain forum (https://vborg.vbsupport.ru/showthread.php?t=51218)

Rose 04-05-2003 02:40 PM

Link not open new window in certain forum
 
I'm looking for a way to make it so links posted in a certain forum don't open a new window, but instead open in the same window. Maybe somehow setup a new template to display the link - that way one can preserve the header and not just open the link by itself.

Would this work? I'm specifically referring to links such as images (similiar to the "attachment editor", but not using attachments and only working in a specified forum(s)). But I suppose this could work with other websites as well - you know when you click a link from an email in hotmail it will display a hotmail header and the page below? That's kinda what I'm looking for.

Anyone interested in helping out, making, or pointing me in the right direction? It'd be awfully handy.

Logician 04-05-2003 08:58 PM

edit functions.php, find:

PHP Code:

function checkurl($url$hyperlink="") {
global 
$bburl

Replace it as:
PHP Code:

function checkurl($url$hyperlink="") {
global 
$bburl,$thread

a few lines below find:
PHP Code:

return "<a href=\"$bburl/gourl.php?url=".urlencode($righturl)."\" target=\"_blank\">".str_replace('\"''"'$hyperlink)."</a>"

Replace it as:
PHP Code:

 if ($thread['forumid']==X) {return "<a href=\"$bburl/gourl.php?url=".urlencode($righturl)."\">".str_replace('\"''"'$hyperlink)."</a>";}
  else {return 
"<a href=\"$bburl/gourl.php?url=".urlencode($righturl)."\" target=\"_blank\">".str_replace('\"''"'$hyperlink)."</a>";} 

(Replace X with forumid)

Find:
PHP Code:

function bbcodeparse2($bbcode,$dohtml,$dobbimagecode,$dosmilies,$dobbcode)
// parses text for vB code, smilies and censoring

  
global $DB_site,$wordwrap,$allowdynimg$bbuserinfo

Replace it as:
PHP Code:

function bbcodeparse2($bbcode,$dohtml,$dobbimagecode,$dosmilies,$dobbcode)
// parses text for vB code, smilies and censoring

  
global $DB_site,$wordwrap,$allowdynimg$bbuserinfo$thread

find:
PHP Code:

        $replacearray = array(
          
"<ol type=\"\\5\">\\7</ol>",
          
"<ul>\\4</ul>",
          
"<li>",
          
"<a href=\"http://www.\\6\" target=\"_blank\">\\8</a>",
          
"<a href=\"\\5\" target=\"_blank\">\\7</a>",
          
"<a href=\"http://www.\\5\" target=\"_blank\">\\5</a>",
          
"<a href=\"\\4\" target=\"_blank\">\\4</a>",
          
"</normalfont><blockquote><pre><smallfont>code:</smallfont><hr>\\5<hr></pre></blockquote><normalfont>",
          
"</normalfont><blockquote><pre><smallfont>code:</smallfont><hr>\\5<hr></pre></blockquote><normalfont>",
          
"java script:",
          
"about :",
          
"vbscript :"
        
); 

Replace it as:

PHP Code:

if ($thread['forumid']==X) {
        
$replacearray = array(
          
"<ol type=\"\\5\">\\7</ol>",
          
"<ul>\\4</ul>",
          
"<li>",
          
"<a href=\"http://www.\\6\">\\8</a>",
          
"<a href=\"\\5\">\\7</a>",
          
"<a href=\"http://www.\\5\">\\5</a>",
          
"<a href=\"\\4\">\\4</a>",
          
"</normalfont><blockquote><pre><smallfont>code:</smallfont><hr>\\5<hr></pre></blockquote><normalfont>",
          
"</normalfont><blockquote><pre><smallfont>code:</smallfont><hr>\\5<hr></pre></blockquote><normalfont>",
          
"java script:",
          
"about :",
          
"vbscript :"
        
);
}
else
    {
        
$replacearray = array(
          
"<ol type=\"\\5\">\\7</ol>",
          
"<ul>\\4</ul>",
          
"<li>",
          
"<a href=\"http://www.\\6\" target=\"_blank\">\\8</a>",
          
"<a href=\"\\5\" target=\"_blank\">\\7</a>",
          
"<a href=\"http://www.\\5\" target=\"_blank\">\\5</a>",
          
"<a href=\"\\4\" target=\"_blank\">\\4</a>",
          
"</normalfont><blockquote><pre><smallfont>code:</smallfont><hr>\\5<hr></pre></blockquote><normalfont>",
          
"</normalfont><blockquote><pre><smallfont>code:</smallfont><hr>\\5<hr></pre></blockquote><normalfont>",
          
"java script:",
          
"about :",
          
"vbscript :"
        
);


(Replace X with your forumid)

Enjoy..

Rose 04-06-2003 04:01 PM

Wow! Thanks, Logician. I'm unable to find the very first set of instructions, though, in my functions.php. I have the line:

PHP Code:

function checkurl($url$hyperlink="") { 

but not the second one below it. Here's what I have, lines 910-922 of functions.php v2.2.8.

PHP Code:

// ###################### Start checkurl #######################
function checkurl($url$hyperlink="") {
  
$righturl $url;
  if(!
preg_match("![a-z]://!si"$url)) {
    
$righturl "http://$righturl";
  }
  
// remove threat of users including javascript in url
  /*$righturl = preg_replace("/javascript:/si", "java script:", $righturl);
  $righturl = preg_replace("/about:/si", "about :", $righturl);*/
  
$hyperlink iif(trim($hyperlink)=="" or $hyperlink==$urliif(strlen($url)>55,substr($url,0,35)."...".substr($url,-15),$url) ,$hyperlink);
  return 
"<a href=\"$righturl\" target=\"_blank\">".str_replace('\"''"'$hyperlink)."</a>";



Logician 04-06-2003 05:14 PM

[edit] correction for your vb version:

STEP 2:
find
PHP Code:

return "<a href=\"$righturl\" target=\"_blank\">".str_replace('\"''"'$hyperlink)."</a>"

replace it as:
PHP Code:

if ($thread['forumid']==X) {return "<a href=\"$righturl\" >".str_replace('\"''"'$hyperlink)."</a>";
}
else {return 
"<a href=\"$righturl\" target=\"_blank\">".str_replace('\"''"'$hyperlink)."</a>";



Rose 04-06-2003 05:41 PM

:( If I just apply the changes you mention in Post #4, I get the following parse error.

[parse]Parse error: parse error, unexpected ',' in /home/xxxx/public_html/forums/admin/functions.php on line 920

Fatal error: Call to undefined function: vbdate() in /home/xxxx/public_html/forums/admin/sessions.php on line 399[/parse]

If I apply the changes in Post #4, combined with the third step in post #2, here's the parse error I get.

[parse]Parse error: parse error, unexpected ',' in /home/xxx/public_html/forums/admin/functions.php on line 939

Fatal error: Call to undefined function: vbdate() in /home/xxx/public_html/forums/admin/sessions.php on line 399[/parse]

Line 939 of Functions.php is the newly inserted
PHP Code:

if ($thread['forumid']==27) {return "<a href=\"$righturl\" >".'\"''"'$hyperlink)."</a>"

I did notice that didn't match my original line (minus the "target=_blank" of course) because the original line has "str_replace" in it. Would this matter? I tried editing around a bit to see if I could get any of it to work, but just a slew of parse errors.

Logician 04-06-2003 08:07 PM

the code in post 2 is tested in 2.2.6 and working ok.

If you have a different line all you have to do is to apply the hack like this:

PHP Code:

if ($thread['forumid']==27
{
line without target=\"_blank\"
}
else
{
original line goes here.


so if your line is

PHP Code:

return "<a href=\"$righturl\" target=\"_blank\">".str_replace('\"''"'$hyperlink)."</a>"

it should be changed as:

PHP Code:

if ($thread['forumid']==27
{
return 
"<a href=\"$righturl\">".str_replace('\"''"'$hyperlink)."</a>";
}
else
{
return 
"<a href=\"$righturl\" target=\"_blank\">".str_replace('\"''"'$hyperlink)."</a>";


(also dont forget to add part: )
PHP Code:

global $bburl,$thread


Rose 04-08-2003 08:13 PM

:D All the errors are cleared up and the code is in without problem. Thank you, Logician. But it still doesn't open links inside forumid==27 in the same page. I'm thinking I might need to go with the hack that allows links on the same server to open in a page, other links open in new window.

Logician 04-09-2003 06:37 AM

if hack works for you, yep go ahead..

If it does not do the trick, come back here and we can figure out what's wrong. :) I know my code works because I tested it before posting here..

Xube 03-19-2004 03:44 PM

Quote:

Originally Posted by Rose
:D All the errors are cleared up and the code is in without problem. Thank you, Logician. But it still doesn't open links inside forumid==27 in the same page. I'm thinking I might need to go with the hack that allows links on the same server to open in a page, other links open in new window.

Rose, if it doesn't open the links inside of the forum page as you desired, does this hack at least open the links inside the same (original) window where you clicked the link?

Logician, could you let me know which version of vB that your original instructs were for? (I'm looking for a simple hack that opens any and all clicked links on my board onto the same window from where the link was clicked at (in other words I don't want links to open in a new window). Thanks. :nervous:

Logician 03-21-2004 09:18 AM

It has been over a year :) but I guess I gave it for 2.2.6 and I believe it should work in all 2.x


All times are GMT. The time now is 01:16 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.01233 seconds
  • Memory Usage 1,802KB
  • 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
  • (17)bbcode_php_printable
  • (1)bbcode_quote_printable
  • (1)footer
  • (1)gobutton
  • (1)header
  • (1)headinclude
  • (6)option
  • (1)post_thanks_navbar_search
  • (1)printthread
  • (10)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
  • bbcode_fetch_tags
  • bbcode_create
  • bbcode_parse_start
  • bbcode_parse_complete_precache
  • bbcode_parse_complete
  • printthread_post
  • printthread_complete