Öncelikle Birinci Sorununuzu Çözmeye çalışalım. Sources klasöründeki GoogleTagged.php de aşağıdaki kodu bulun:
$context['googletagged_tag'] = $row['tag'];
$context['googletagged_text'] = str_replace("+", "", $row['tag']);
// tidy up
unset($row);
mysql_free_result($query);
// form the page title with our search
$context['page_title'] = $mbname .' - '. $txt['googletagged_search'] . $context['googletagged_text'];Bununla değiştirin:
$context['googletagged_tag'] = $row['tag'];
$context['googletagged_text'] = str_replace("+", " ", $row['tag']);
// tidy up
unset($row);
mysql_free_result($query);
// form the page title with our search
$context['page_title'] = $context['googletagged_text'];Çıktıyı bir görelim. Sonra diğer soruna bakarız...