Show
Ignore:
Timestamp:
09/09/06 14:52:23 (2 years ago)
Author:
mbonetti
Message:

Yay for gettext localization! This will probably break things big time.
Note that until intl/*.php isn't adapted the the new method, the trunk
won't be localized!

Files:
1 modified

Legend:

Unmodified
Added
Removed
  • trunk/gregarius/cls/items.php

    r1543 r1561  
    485485    var $_parent; 
    486486    var $pages; 
    487     function ItemListNavigation($il) { 
     487    function ItemListNavigation(&$il) { 
    488488        $this -> _parent = $il; 
    489489        $this -> pages = array(); 
     
    535535            . $this -> _sqlActualWhere; 
    536536        list($this -> numItems) = rss_fetch_row(rss_query($sql)); 
    537         $this -> navigation = new ItemListNavigation(& $this); 
     537        $this -> navigation = new ItemListNavigation($this); 
    538538    } 
    539539}