[Tickets #252] NEW: HTML syntax wrong in /turba/templates/browse/select.inc

bugs at bugs.horde.org bugs at bugs.horde.org
Wed Jun 2 07:47:34 PDT 2004


DO NOT REPLY TO THIS MESSAGE. THIS EMAIL ADDRESS IS NOT MONITORED.

-Ticket 252
-Queue: Turba
-Created By: 


>From stp at pinkmarketing.at (Wed Jun  2 07:47:34 2004):
/turba/browse.php is loading in the /turba/templates/browse/footer.inc in
the third line from the bottom up.

DIST:

require TURBA_TEMPLATES . '/browse/footer.inc';

SHOULD BE:

//require TURBA_TEMPLATES . '/browse/footer.inc';

<snip>

After the open /turba/templates/browse/select.inc.

DIST:

<form name="directory_list" action="<?php echo
Horde::applicationUrl('browse.php') ?>" method="get">
<?php echo Horde::formInput() ?>
<tr>
  <td class="header" align="center">
    <table border="0" width="100%" cellpadding="0" cellspacing="0">
    <tr>
      <td align="right" width="30%" class="header">
        <b><?php echo _("Select Address Book") ?>&nbsp;&nbsp;</b>
      </td>

      <td align="left" width="70%" class="header">
        <select name="source"><?php echo $source_options ?></select>
        <input class="button" type="submit" value="<?php echo _("Show") ?>"
/>
      </td>
    </tr>
    </table>
  </td>
</tr>
</form>

SHOULD BE (include the <table> tags before and after <tr> and inside the
<form> tags):

<form name="directory_list" action="<?php echo
Horde::applicationUrl('browse.php') ?>" method="get">
<?php echo Horde::formInput() ?>
<table border="0" width="100%">
<tr>
  <td class="header" align="center">
    <table border="0" width="100%" cellpadding="0" cellspacing="0">
    <tr>
      <td align="right" width="30%" class="header">
        <b><?php echo _("Select Address Book") ?>&nbsp;&nbsp;</b>
      </td>

      <td align="left" width="70%" class="header">
        <select name="source"><?php echo $source_options ?></select>
        <input class="button" type="submit" value="<?php echo _("Show") ?>"
/>
      </td>
    </tr>
    </table>
  </td>
</tr>
</table>
</form>










http://bugs.horde.org/details.php?id=252

-- 


More information about the bugs mailing list