vb.org Archive

vb.org Archive (https://vborg.vbsupport.ru/index.php)
-   vB4 Programming Discussions (https://vborg.vbsupport.ru/forumdisplay.php?f=252)
-   -   Remove ?goto=newpost from URL in RSS? (https://vborg.vbsupport.ru/showthread.php?t=242768)

HjDa 05-18-2010 07:56 AM

Remove ?goto=newpost from URL in RSS?
 
How??? :confused:

HjDa 05-20-2010 08:16 AM

Nobody who knows?

Guessing that it is in this code somewhere (external.php):
PHP Code:

case 'RSS2':
                    
$xml->add_group('item');
                        
$xml->add_tag('title'$thread['prefix_plain'] . unhtmlspecialchars($thread['title']));
                        
$xml->add_tag('link'$vbulletin->options['bburl'] . '/' fetch_seo_url('thread|nosession|js'$thread, array('goto' => 'newpost')), array(), falsetrue);
                        
$xml->add_tag('pubDate'gmdate('D, d M Y H:i:s'$thread['dateline']) . ' GMT');

                    
$plaintext_parser = new vB_BbCodeParser_PlainText($vbulletinfetch_tag_list($vbulletin->options['bburl'] . '/'));
                    
$plainmessage $plaintext_parser->parse($thread['message'], $thread['forumid']);
                    unset(
$plaintext_parser); 

or?

Adan0s 05-23-2010 09:20 AM

Yes, it's in external.php. Just look into the case where you want to remove it (watch out: there's a difference between RSS and RSS2). If you want to remove it in RSS2 you just pasted the right code snippet. To remove the newpost-parameter just null the first array in the link-tag:

PHP Code:

$xml->add_tag('link'$vbulletin->options['bburl'] . '/' fetch_seo_url('thread|nosession|js'$thread, array(), array(), falsetrue); 

I did quiet some editing within the external.php. So if you have more questions, just ask.

HjDa 05-24-2010 06:58 AM

Quote:

Originally Posted by Adan0s (Post 2042147)
Yes, it's in external.php. Just look into the case where you want to remove it (watch out: there's a difference between RSS and RSS2). If you want to remove it in RSS2 you just pasted the right code snippet. To remove the newpost-parameter just null the first array in the link-tag:

PHP Code:

$xml->add_tag('link'$vbulletin->options['bburl'] . '/' fetch_seo_url('thread|nosession|js'$thread, array(), array(), falsetrue); 

I did quiet some editing within the external.php. So if you have more questions, just ask.

Thank you for helping!

But get an error message:
Parse error: syntax error, unexpected ';' in /web/se/www.infertility.se/external.php

--------------- Added [DATE]1274693055[/DATE] at [TIME]1274693055[/TIME] ---------------

This seems to work:

PHP Code:

$xml->add_tag('link'$vbulletin->options['bburl'] . '/' fetch_seo_url('thread|nosession|js'$thread), array(), falsetrue); 



All times are GMT. The time now is 09:00 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.01112 seconds
  • Memory Usage 1,736KB
  • 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
  • (4)bbcode_php_printable
  • (1)bbcode_quote_printable
  • (1)footer
  • (1)gobutton
  • (1)header
  • (1)headinclude
  • (6)option
  • (1)post_thanks_navbar_search
  • (1)printthread
  • (4)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