
05-30-2012, 01:37 PM
|
|
|
Join Date: Feb 2009
Posts: 77
Благодарил(а): 0 раз(а)
Поблагодарили:
0 раз(а) в 0 сообщениях
|
|
Quote:
Originally Posted by kh99
Yeah, you would have to change this (the comma in red):
Code:
public function fetch_rendered_tag_list()
{
$taglist = $this->fetch_existing_tag_list();
return fetch_tagbits(implode(", ", $taglist));
}
and then in includes/functions_bigthree.php around line 435, another comma in red (in the explode call), and the $vbphrase['comma_space'] you can replace a string:
Code:
function fetch_tagbits($tags)
{
global $vbulletin, $vbphrase, $show, $template_hook;
$tagcount = 0;
$tag_list = array();
if ($tags)
{
$tag_array = explode(',', $tags);
foreach ($tag_array AS $tag)
{
$row = array();
$tag = trim($tag);
if ($tag === '')
{
continue;
}
$tagcount++;
$row['tag'] = fetch_word_wrapped_string($tag);
$row['url'] = urlencode(unhtmlspecialchars($tag));
$row['comma'] = $vbphrase['comma_space'];
there may be other places as well, but try this.
|
If I want tags to be seperated with "\" , do I have to adjust this: $row['comma'] = $vbphrase['comma_space']; to : $row['comma'] = $vbphrase['\'];
|