Verfasst: 28.01.2008 00:02
einmal geändert in der bbcode.html :
<!-- BEGIN url --><a Target="_blank" href="{URL}" class="postlink">{DESCRIPTION}</a><!-- END url -->
und zusätzlich :
den Mod Prime Links
Copy: root/includes/prime_links.php
To: includes/prime_links.php
Open: includes/functions_content.php
Find
Tip: This may be a partial find and not the whole line.
Code:Select All
if ($force_option || !$config['allow_smilies'] || !$user->optionget('viewsmilies'))
Add before
Tip: Add these lines on a new blank line before the preceding line(s) to find.
Code:Select All
//-- mod: Prime Links -------------------------------------------------------//
if (!function_exists('prime_links'))
{
global $phpEx;
include($phpbb_root_path . 'includes/prime_links.' . $phpEx);
}
$text = prime_links($text);
//-- end: Prime Links -------------------------------------------------------//
<!-- BEGIN url --><a Target="_blank" href="{URL}" class="postlink">{DESCRIPTION}</a><!-- END url -->
und zusätzlich :
den Mod Prime Links
Copy: root/includes/prime_links.php
To: includes/prime_links.php
Open: includes/functions_content.php
Find
Tip: This may be a partial find and not the whole line.
Code:Select All
if ($force_option || !$config['allow_smilies'] || !$user->optionget('viewsmilies'))
Add before
Tip: Add these lines on a new blank line before the preceding line(s) to find.
Code:Select All
//-- mod: Prime Links -------------------------------------------------------//
if (!function_exists('prime_links'))
{
global $phpEx;
include($phpbb_root_path . 'includes/prime_links.' . $phpEx);
}
$text = prime_links($text);
//-- end: Prime Links -------------------------------------------------------//