[Koha-patches] [PATCH] Bugfix: Correcting invalid markup

chris.nighswonger at gmail.com chris.nighswonger at gmail.com
Sun Feb 14 01:26:19 CET 2010


From: Chris Nighswonger <chris.nighswonger at gmail.com>

---
 en/koha3-2manual.xml |   66 +++++++++++++++++++++++++++++++++++--------------
 1 files changed, 47 insertions(+), 19 deletions(-)

diff --git a/en/koha3-2manual.xml b/en/koha3-2manual.xml
index d447b99..d6a88c0 100644
--- a/en/koha3-2manual.xml
+++ b/en/koha3-2manual.xml
@@ -19031,19 +19031,19 @@ print theme('pages_catalog');</programlisting>
         <listitem>
           <para>At approximately line 54 change this code:</para>
 
-          <programlisting>$template-&gt;param( 
-          koha_news =&gt; $all_koha_news, 
+          <programlisting>$template-&gt;param(
+          koha_news =&gt; $all_koha_news,
           koha_news_count =&gt; $koha_news_count
           ); </programlisting>
 
           <para>To this:</para>
 
           <programlisting>my $page = "page_" . $cgi-&gt;param("p");
-          $template-&gt;param( 
-          koha_news =&gt; $all_koha_news, 
+          $template-&gt;param(
+          koha_news =&gt; $all_koha_news,
           koha_news_count =&gt; $koha_news_count,
           local_page =&gt; "" .
-          C4::Context-&gt;preference($page) 
+          C4::Context-&gt;preference($page)
           ); </programlisting>
         </listitem>
 
@@ -20314,35 +20314,51 @@ print theme('pages_catalog');</programlisting>
 
             <itemizedlist>
               <listitem>
-                 biblionumber 
+                <para>
+                 biblionumber
+                </para>
               </listitem>
 
               <listitem>
-                 borrowernumber 
+                <para>
+                 borrowernumber
+                </para>
               </listitem>
 
               <listitem>
-                 itemnumber 
+                <para>
+                 itemnumber
+                </para>
               </listitem>
 
               <listitem>
-                 priority 
+                <para>
+                 priority
+                </para>
               </listitem>
 
               <listitem>
-                 branchcode 
+                <para>
+                 branchcode
+                </para>
               </listitem>
 
               <listitem>
-                 reservedate 
+                <para>
+                 reservedate
+                </para>
               </listitem>
 
               <listitem>
-                 reservenotes 
+                <para>
+                 reservenotes
+                </para>
               </listitem>
 
               <listitem>
-                 borrowerbranch 
+                <para>
+                 borrowerbranch
+                </para>
               </listitem>
             </itemizedlist>
 
@@ -20364,27 +20380,39 @@ print theme('pages_catalog');</programlisting>
 
             <itemizedlist>
               <listitem>
-                 it is not on loan 
+                <para>
+                 it is not on loan
+                </para>
               </listitem>
 
               <listitem>
-                 it is not withdrawn 
+                <para>
+                 it is not withdrawn
+                </para>
               </listitem>
 
               <listitem>
-                 it is not marked notforloan 
+                <para>
+                 it is not marked notforloan
+                </para>
               </listitem>
 
               <listitem>
-                 it is not currently in transit 
+                <para>
+                 it is not currently in transit
+                </para>
               </listitem>
 
               <listitem>
-                 it is not lost 
+                <para>
+                 it is not lost
+                </para>
               </listitem>
 
               <listitem>
-                 it is not sitting on the hold shelf 
+                <para>
+                 it is not sitting on the hold shelf
+                </para>
               </listitem>
             </itemizedlist>
 
-- 
1.6.5.1.1367.gcd48




More information about the Koha-patches mailing list