HTML interesse |
|
Hoi,
ik zit met een probleem. Ik ben in een (phpBB) forum rss aan het inbouwen. Nu heb ik het volgende in overall_footer.tpl:
<table width="100%" cellpadding="2" cellspacing="0" border="0" class="forumline">
<tr>
<th width="100%" class="thTop" nowrap="nowrap">RSS Feeds</th>
</tr>
<tr>
<td class="row1" height="28" align="center"><span class="mainmenu"><a href="rss.php"><img src="images/rss.gif" alt="RSS" title="RSS van het hele forum" border=0 /> Hele forum</a>
<!-- BEGIN rss_subforum -->
<br /><a href="rss.php?f={rss.ID}"><img src="images/rss.gif" alt="RSS" title="RSS van dit subforum" border=0 /> Sub-Forum</a>
<!-- END rss_subforum -->
<br />
<a href="viewtopic.php?p=77337">Meer info..</a></span></td>
</tr>
</table>
<table width="100%" cellpadding="2" cellspacing="0" border="0" class="forumline"> <tr> <th width="100%" class="thTop" nowrap="nowrap">RSS Feeds</th> </tr> <tr> <td class="row1" height="28" align="center"><span class="mainmenu"><a href="rss.php"><img src="images/rss.gif" alt="RSS" title="RSS van het hele forum" border=0 /> Hele forum</a> <!-- BEGIN rss_subforum --> <br /><a href="rss.php?f={rss.ID}"><img src="images/rss.gif" alt="RSS" title="RSS van dit subforum" border=0 /> Sub-Forum</a> <!-- END rss_subforum --> <br /> <a href="viewtopic.php?p=77337">Meer info..</a></span></td> </tr> </table>
page_tail.php
<?
//
// START RSS MOD
//
if (isset($rss_forum_id))
{
$template->assign_block_vars('rss_subforum', array(
'rss.ID' => $rss_forum_id )
);
}
echo $rss_forum_id; //shows the right id
//
// END RSS MOD
//
?>
<? // // START RSS MOD // if (isset($rss_forum_id)) { $template->assign_block_vars('rss_subforum', array( 'rss.ID' => $rss_forum_id ) ); } echo $rss_forum_id; //shows the right id // // END RSS MOD // ?>
Wat is me probleem? De {rss.ID} word niets voor terug geplaatst. Als ik die variabele echo (zie php code) dan komt de goede id er wel te staan (die variabele is in verschillende pagina's aangemaakt). Ook als ik de toe te voegen variabele in de php code verander in een string, gebeurt er niets. Wat wel gebeurt is dat het bepaalde blokje word weergegeven, maar met een incorrecte link.
Flance
|