Subversion Repositories PHPX

Compare Revisions

Last modification

Ignore whitespace Rev 15 → Rev 16

/trunk/features.class.php
108,17 → 108,21
{
if ($feature instanceof Feature)
{
if ($repeatHeaders
&& $counter > 1
&& $counter % $headerRepeat === 0)
{
?>
<tr class="header">
<th>Feature</th>
<?php $this->printHeaders(); ?>
</tr>
<?php
}
/*
* TODO: Disabled header repetition until footnote ref. name/ID
* problem has been solved
*/
// if ($repeatHeaders
// && $counter > 1
// && $counter % $headerRepeat === 0)
// {
// echo <<<HTML
// <tr class="header">
// <th>Feature</th>
// {$this->printHeaders()}
// </tr>
//HTML;
// }
$feature->printMe();
/trunk/footnotes.class.php
249,8 → 249,7
echo " <tr>
<th><sup><a name='footnote-{$s}' id='footnote-{$s}' class='footnote'
>{$this->sign}</a></sup><a
href='#fn-{$s}-ref' name='footnote-{$s}' id='footnote-{$s}'
class='backref'>&#8593;</a></th>
href='#fn-{$s}-ref' class='backref'>&#8593;</a></th>
<td>{$this->text}</td>
</tr>
";