NOTE: This patch is intended for the 3.2 documentation repo rather than the code repo.
On Sat, Feb 13, 2010 at 7:26 PM, <[email protected]> wrote: > From: Chris Nighswonger <[email protected]> > > --- > 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->param( > - koha_news => $all_koha_news, > + <programlisting>$template->param( > + koha_news => $all_koha_news, > koha_news_count => $koha_news_count > ); </programlisting> > > <para>To this:</para> > > <programlisting>my $page = "page_" . $cgi->param("p"); > - $template->param( > - koha_news => $all_koha_news, > + $template->param( > + koha_news => $all_koha_news, > koha_news_count => $koha_news_count, > local_page => "" . > - C4::Context->preference($page) > + C4::Context->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 > > _______________________________________________ > Koha-patches mailing list > [email protected] > http://lists.koha.org/mailman/listinfo/koha-patches > _______________________________________________ Koha-patches mailing list [email protected] http://lists.koha.org/mailman/listinfo/koha-patches
