myexperiment-hackers
[Top][All Lists]
Advanced

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

[myexperiment-hackers] [2057] trunk/app/views/layouts/_paginate.rhtml: B


From: noreply
Subject: [myexperiment-hackers] [2057] trunk/app/views/layouts/_paginate.rhtml: Bug-fix (found by Stuart): "paginate" layout partial contained mistyped CSS class names, which resulted in a "<< previous" link on the first page (same for "next >>" link on last page) of results to be displayed incorrectly.
Date: Fri, 16 Jan 2009 09:54:37 -0500 (EST)

Revision
2057
Author
alekses6
Date
2009-01-16 09:54:36 -0500 (Fri, 16 Jan 2009)

Log Message

Bug-fix (found by Stuart): "paginate" layout partial contained mistyped CSS class names, which resulted in a "<< previous" link on the first page  (same for "next >>" link on last page) of results to be displayed incorrectly.

Modified Paths

Diff

Modified: trunk/app/views/layouts/_paginate.rhtml (2056 => 2057)


--- trunk/app/views/layouts/_paginate.rhtml	2009-01-16 14:48:52 UTC (rev 2056)
+++ trunk/app/views/layouts/_paginate.rhtml	2009-01-16 14:54:36 UTC (rev 2057)
@@ -6,7 +6,7 @@
 	    	    <%= link_to '&#171; previous', { :page => collection.previous_page } %>
 	    	 </li>
 	  <% else -%>
-         <li class="disablepage">&#171; previous</li>
+         <li class="disabledpage">&#171; previous</li>
 	  <% end -%>
  
     <% last_page = 0 -%>
@@ -26,7 +26,7 @@
         <%=  link_to 'next &#187;', { :page => collection.next_page } %>
      </li>
     <% else -%>
-      <li class="disablepage">next &#187;</li>
+      <li class="disabledpage">next &#187;</li>
     <% end -%>
   </ul>
 </div>

reply via email to

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