Seite 1 von 1

Smileys in Umfragen einfügen

Verfasst: 25.12.2003 12:10
von Fabian
Hi!

Ist esmöglich, Smileys auch in Umfragen einzufügen?
Wenn ja --> Wie? Der Smileycode klappt nicht!
Wenn nein --> Idee für einen MOD.

Tschüs, Fabi!

Verfasst: 26.12.2003 00:26
von Acid
viewtopic.php
++FINDE++

Code: Alles auswählen

				$template->assign_block_vars("poll_option", array(
					'POLL_OPTION_CAPTION' => $vote_info[$i]['vote_option_text'],
++MIT FOLGENDEM ERSETZEN++

Code: Alles auswählen

				$template->assign_block_vars("poll_option", array(
					'POLL_OPTION_CAPTION' => smilies_pass($vote_info[$i]['vote_option_text']),
++FINDE++

Code: Alles auswählen

				$template->assign_block_vars("poll_option", array(
					'POLL_OPTION_ID' => $vote_info[$i]['vote_option_id'],
					'POLL_OPTION_CAPTION' => $vote_info[$i]['vote_option_text'])
++MIT FOLGENDEM ERSETZEN++

Code: Alles auswählen

				$template->assign_block_vars("poll_option", array(
					'POLL_OPTION_ID' => $vote_info[$i]['vote_option_id'],
					'POLL_OPTION_CAPTION' => smilies_pass($vote_info[$i]['vote_option_text']))
++FINDE++

Code: Alles auswählen

		$template->assign_vars(array(
			'POLL_QUESTION' => $vote_title,
++MIT FOLGENDEM ERSETZEN++

Code: Alles auswählen

		$template->assign_vars(array(
			'POLL_QUESTION' => smilies_pass($vote_title),