X-Git-Url: http://git.polytechnique.org/?a=blobdiff_plain;f=include%2Ftrombi.inc.php;h=034c9ace28dbf89bbee98705d1cfb352ab85f49c;hb=cab0809050d58f8484608e91f7555ebd69dcb451;hp=9f09a3f31b9e8b066f724322e0c0957bec43cf2a;hpb=50a40a33a496131e817df875607ea5542d096a64;p=platal.git diff --git a/include/trombi.inc.php b/include/trombi.inc.php index 9f09a3f..034c9ac 100644 --- a/include/trombi.inc.php +++ b/include/trombi.inc.php @@ -26,33 +26,33 @@ require_once('xorg.plugin.inc.php'); class Trombi extends XOrgPlugin { // {{{ properties - - var $_get_vars = Array('offset'); + + var $_get_vars = array('offset'); var $limit = 24; var $admin = false; var $showpromo = true; // }}} // {{{ function setNbRows() - + function setNbRows($row) { $this->limit = $row*3; } // }}} // {{{ function setAdmin() - + function setAdmin() { $this->admin = true; } // }}} // {{{ function hidePromo() - + function hidePromo() { $this->showpromo = false; } // }}} // {{{ function show() - + function show() { /* this point is nasty... but since show() is called from the template ... @@ -81,7 +81,7 @@ class Trombi extends XOrgPlugin $page->assign('trombi_admin', $this->admin); return $page->fetch('include/trombi.tpl'); } - + // }}} }