@mucurum

GoogleTagged.php dosyasında aşağıdaki kodu bulun:

		$query = db_query("
				SELECT g.tag, g.ID_TAG, g.hits, g.status, g.ID_TOPIC, t.ID_TOPIC
				FROM {$db_prefix}googletagged as g, {$db_prefix}topics as t
				WHERE g.ID_TOPIC = t.ID_TOPIC
					AND g.status != 0
				GROUP BY g.tag
				ORDER BY RAND()
				LIMIT 50
		", __FILE__, __LINE__);
Bununla değiştirin:

		$query = db_query("
				SELECT g.tag, g.ID_TAG, g.hits, g.status, g.ID_TOPIC, t.ID_TOPIC
				FROM {$db_prefix}googletagged as g, {$db_prefix}topics as t
				WHERE g.ID_TOPIC = t.ID_TOPIC
					AND g.status != 0
				GROUP BY g.tag
				ORDER BY RAND()
				LIMIT 100
		", __FILE__, __LINE__);
Bu kodlar ile birlikte kelime sayısı 50 den 100 e çıkar.

Kolay gelsin.