Recent change in templates/view/memo.inc breaks the viewing.
christopher pickert <[email protected]> Mon, 28 Jun 2004 14:28:32 -0600
| Newsgroups | gmane.comp.horde.mnemo |
|---|---|
| Message-ID | <[email protected]> |
This is a multi-part message in MIME format. --------------020603070405030605000900 Content-Type: text/plain; charset=us-ascii; format=flowed Content-Transfer-Encoding: 7bit Get's an 'unexpected T_STRING on line 63' after the recent changes. It's due to a typo on the last variable passed to the Util::addParameter() call. (missing trailing tick ' ). Patch follows, and is attached. -- Christopher Pickert <cid:[email protected]> file:///C:/memo.inc.patch <cid:[email protected]> --------------020603070405030605000900 Content-Type: text/plain; name="memo.inc.patch" Content-Transfer-Encoding: 7bit Content-Disposition: inline; filename="memo.inc.patch" --- memo.inc 2004-06-28 09:09:18.000000000 -0600 +++ memo.inc.pickert 2004-06-28 14:23:19.000000000 -0600 @@ -60,7 +60,7 @@ | <?php endif; ?> <?php if ($share->hasPermission(Auth::getAuth(), PERMS_DELETE)): ?> - <?php echo Horde::widget(Horde::applicationUrl(Util::addParameter($memourl, 'actionID', 'delete_memos)), _("Delete"), 'widget', '', '', _("_Delete"), true) ?> + <?php echo Horde::widget(Horde::applicationUrl(Util::addParameter($memourl, 'actionID', 'delete_memos')), _("Delete"), 'widget', '', '', _("_Delete"), true) ?> | <?php endif; ?> <?php echo Horde::widget(Horde::applicationUrl('list.php'), _("Back to Notepad"), 'widget', '', '', _("_Back to Notepad"), true) ?> --------------020603070405030605000900 Content-Type: text/plain; charset="us-ascii" MIME-Version: 1.0 Content-Transfer-Encoding: 7bit Content-Disposition: inline -- Mnemo mailing list - Join the hunt: http://horde.org/bounties/#mnemo Frequently Asked Questions: http://horde.org/faq/ To unsubscribe, mail: [email protected] --------------020603070405030605000900--