Jump to content
InvisionCommunity.de - Der Deutsche Invision Community Support
Sign in to follow this  
mäky

FUnktioniert das anonymisieren eig. noch?

Recommended Posts

Hey,

funktioniert es eig. noch , dass wenn ich einen link angebe der automatisch mit http://anonym.to weitergeleitet wird?

Wenn ja , könntet ihr mir da bitte weiterhelfen?

MFG Markus

Edited by mäky

Share this post


Link to post

nur wo am ende einbauen?

Hallo,

Du kannst das machen :

Schließt diese Änderung http: // anonym.to ein? In allem Verbindung(Band) des Forums

Edit file: sources/classes/bbcode/class_bbcode_core.php

Sucht:

			$show = $uri_type.'://'.substr( $stripped , 0, 35 ).'...'.substr( $stripped , -15   );

		}


		return ( isset($url['st']) ? $url['st'] : '' ) . "<a href=\"".$url['html']."\" target=\"_blank\">".$show."</a>" . $url['end'];
Replace With:
			$show = $uri_type.'://'.substr( $stripped , 0, 35 ).'...'.substr( $stripped , -15   );

		}


		$anonym = "http://anonym.to/?";

		$url['html'] = str_replace($anonym, "", $url['html']);


		if (ereg($this->ipsclass->vars['board_url'], $url['html'])){

			$anonym = "";

		}


		return ( isset($url['st']) ? $url['st'] : '' ) . "<a href=\"".$anonym.$url['html']."\" target=\"_blank\">".$show."</a>" . $url['end'];

Save und upload class_bbcode_core.php wieder

Share this post


Link to post

Create an account or sign in to comment

You need to be a member in order to leave a comment

Create an account

Sign up for a new account in our community. It's easy!

Register a new account

Sign in

Already have an account? Sign in here.

Sign In Now

Sign in to follow this  

×