Bug 5416 - Template syntax error in moredetails.tmpl
Summary: Template syntax error in moredetails.tmpl
Status: CLOSED FIXED
Alias: None
Product: Koha
Classification: Unclassified
Component: Templates (show other bugs)
Version: 3.4
Hardware: All All
: PATCH-Sent (DO NOT USE) minor (vote)
Assignee: Fridolin Somers
QA Contact: Bugs List
URL:
Keywords:
Depends on:
Blocks:
 
Reported: 2010-11-17 12:39 UTC by Fridolin Somers
Modified: 2012-10-25 22:52 UTC (History)
1 user (show)

See Also:
Change sponsored?: ---
Patch complexity: ---
Documentation contact:
Documentation submission:
Text to go in the release notes:
Version(s) released in:


Attachments
Proposed patch (1.50 KB, patch)
2010-11-17 12:40 UTC, Fridolin Somers
Details | Diff | Splinter Review
Same fix, reformatted patch (1.85 KB, patch)
2010-11-24 14:47 UTC, Owen Leonard
Details | Diff | Splinter Review

Note You need to log in before you can comment on or make changes to this bug.
Description Fridolin Somers 2010-11-17 12:39:30 UTC
Hie,

There is a syntax error in moredetails.tmpl (intranet) : 
<!-- TMPL_IF -->
<!-- TMPL_UNLESS -->
<!-- /TMPL_IF -->
<!-- /TMPL_UNLESS -->

sould be : 
<!-- TMPL_IF -->
  <!-- TMPL_UNLESS -->
  <!-- /TMPL_UNLESS -->
<!-- /TMPL_IF -->

It didn't crash but it could.

Regards,
Comment 1 Fridolin Somers 2010-11-17 12:40:52 UTC Comment hidden (obsolete)
Comment 2 Owen Leonard 2010-11-24 14:47:58 UTC
Created attachment 2783 [details] [review]
Same fix, reformatted patch

I couldn't apply the previously attached patch so I made the same changes and re-formatted it.
Comment 3 Fridolin Somers 2010-11-24 17:11:00 UTC
(In reply to comment #2)
> Created attachment 2783 [details] [review]
> Same fix, reformatted patch
> 
> I couldn't apply the previously attached patch so I made the same changes and
> re-formatted it.

Thanks a lot.
I may not be in last git version.
Comment 4 Chris Cormack 2010-12-13 08:23:40 UTC
Pushed to master, please test
Comment 5 Fridolin Somers 2010-12-13 08:35:43 UTC
Ok,

Thanks a lot.