koha-bugs
[Top][All Lists]
Advanced

[Date Prev][Date Next][Thread Prev][Thread Next][Date Index][Thread Index]

[Koha-bugs] [Bug 542] New: Move HTML out of itemtypes.pl


From: bugzilla-daemon
Subject: [Koha-bugs] [Bug 542] New: Move HTML out of itemtypes.pl
Date: 17 Jul 2003 18:51:27 -0000

http://bugs.koha.org/cgi-bin/bugzilla/show_bug.cgi?id=542

           Summary: Move HTML out of itemtypes.pl
           Product: Koha
           Version: 2.0.0
          Platform: All
        OS/Version: All
            Status: NEW
          Severity: trivial
          Priority: P2
         Component: Parameters
        AssignedTo: address@hidden
        ReportedBy: address@hidden
         QAContact: address@hidden


If we change line 197 of itemtypes.pl from

   $template->param(previous => "<a 
href=\"$script_name?offset=".$prevpage.'">');

to

   $template->param(previous => "$script_name?offset=".$prevpage);

...and line 201 from

   $template->param(next => "<a href=\"$script_name?offset=".$nextpage.'">');

to

   $template->param(next => "$script_name?offset=".$nextpage);

We can alter itemtypes.tmpl, changing line 156 from

                <td width=33%><TMPL_IF name="previous"><TMPL_VAR 
name="previous"><input
type=image src="<TMPL_VAR name="interface">/<TMPL_VAR
name="theme">/images/1leftarrow.png" title="previous" ALT="previous"
BORDER=0></a></TMPL_IF></td>

to

                <td width=33%><TMPL_IF name="previous"><a href="<TMPL_VAR
name="previous">"><input type=image src="<TMPL_VAR name="interface">/<TMPL_VAR
name="theme">/images/1leftarrow.png" title="previous" ALT="previous"
BORDER=0></a></TMPL_IF></td>

and line 157 from

                <td width=33%><TMPL_IF name="next"><TMPL_VAR name="next"><input 
type=image
src="<TMPL_VAR name="interface">/<TMPL_VAR name="theme">/images/1rightarrow.png"
title="next" ALT="next" BORDER=0></a></TMPL_IF></td>

to

                <td width=33%><TMPL_IF name="next"><a href="<TMPL_VAR 
name="next">"><input
type=image src="<TMPL_VAR name="interface">/<TMPL_VAR
name="theme">/images/1rightarrow.png" title="next" ALT="next"
BORDER=0></a></TMPL_IF></td>



------- You are receiving this mail because: -------
You are the QA contact for the bug, or are watching the QA contact.



reply via email to

[Prev in Thread] Current Thread [Next in Thread]