From: <pan...@us...> - 2009-02-14 11:04:38
|
Revision: 509 http://acmcontester.svn.sourceforge.net/acmcontester/?rev=509&view=rev Author: panzaboi Date: 2009-02-14 11:04:36 +0000 (Sat, 14 Feb 2009) Log Message: ----------- Text Case Problem Modified Paths: -------------- website/library/Application.php website/library/Ostacium/View/Helper/ListTable.php Modified: website/library/Application.php =================================================================== --- website/library/Application.php 2009-02-14 10:59:50 UTC (rev 508) +++ website/library/Application.php 2009-02-14 11:04:36 UTC (rev 509) @@ -65,7 +65,6 @@ set_include_path( self::$_docroot . PATH_SEPARATOR . self::$_docroot . '/application' . PATH_SEPARATOR - . self::$_docroot . '/library' . PATH_SEPARATOR . get_include_path() ); @@ -91,7 +90,7 @@ // Setup Helpers Ostacium_View_Helper_Truncate::setDefault($_config->truncate->toArray()); - Ostacium_View_Helper_listTable::setDefaultAttribs($_config->listtable->toArray()); + Ostacium_View_Helper_ListTable::setDefaultAttribs($_config->listtable->toArray()); Zend_View_Helper_PaginationControl::setDefaultViewPartial($_config->paginator->file); // Paginator Modified: website/library/Ostacium/View/Helper/ListTable.php =================================================================== --- website/library/Ostacium/View/Helper/ListTable.php 2009-02-14 10:59:50 UTC (rev 508) +++ website/library/Ostacium/View/Helper/ListTable.php 2009-02-14 11:04:36 UTC (rev 509) @@ -13,7 +13,7 @@ $this->defaultURL = array_intersect_key($params, array('controller' => 1, 'module' => 1)); } - public function listTable($primarykey, $rows, $headers = null, $actions, $topactions = null, $sortedby = null, $attribs = null) + public function ListTable($primarykey, $rows, $headers = null, $actions, $topactions = null, $sortedby = null, $attribs = null) { if (!$attribs) { This was sent by the SourceForge.net collaborative development platform, the world's largest Open Source development site. |