From: <gem...@li...> - 2012-02-16 10:52:19
|
Revision: 491 http://gemstracker.svn.sourceforge.net/gemstracker/?rev=491&view=rev Author: mennodekker Date: 2012-02-16 10:52:09 +0000 (Thu, 16 Feb 2012) Log Message: ----------- Changed rounds in StandardTokenModel to joinLeft as sometimes there is a token not attached to a round Removed contact from header_bar in new_project Modified Paths: -------------- trunk/library/classes/Gems/Tracker/Model/StandardTokenModel.php trunk/new_project/application/configs/project.ini Modified: trunk/library/classes/Gems/Tracker/Model/StandardTokenModel.php =================================================================== --- trunk/library/classes/Gems/Tracker/Model/StandardTokenModel.php 2012-02-16 10:03:47 UTC (rev 490) +++ trunk/library/classes/Gems/Tracker/Model/StandardTokenModel.php 2012-02-16 10:52:09 UTC (rev 491) @@ -96,7 +96,7 @@ } $this->addTable( 'gems__tracks', array('gto_id_track' => 'gtr_id_track')); - $this->addTable( 'gems__rounds', array('gto_id_round' => 'gro_id_round')); + $this->addLeftTable('gems__rounds', array('gto_id_round' => 'gro_id_round')); $this->addTable( 'gems__surveys', array('gto_id_survey' => 'gsu_id_survey')); $this->addTable( 'gems__groups', array('gsu_id_primary_group' => 'ggp_id_group')); $this->addTable( 'gems__respondents', array('gto_id_respondent' => 'grs_id_user')); Modified: trunk/new_project/application/configs/project.ini =================================================================== --- trunk/new_project/application/configs/project.ini 2012-02-16 10:03:47 UTC (rev 490) +++ trunk/new_project/application/configs/project.ini 2012-02-16 10:52:09 UTC (rev 491) @@ -173,7 +173,7 @@ layoutPrepare.title = 1 layoutPrepare.projectName = header layoutPrepare.login = header_bar -layoutPrepare.contact = header_bar +layoutPrepare.contact = 0 layoutPrepare.localeSet = header_bar layoutPrepare.organizationSwitcher = header_bar layoutPrepare.version = footer @@ -188,7 +188,7 @@ layoutPrepare.jQuery = 1 layoutPrepare.login.class = rightFloat -layoutPrepareArgs.contact.class = rightFloat +;layoutPrepareArgs.contact.class = rightFloat layoutPrepareArgs.time.class = rightFloat layoutPrepareArgs.user.class = rightFloat layoutPrepareArgs.version.class = leftFloat This was sent by the SourceForge.net collaborative development platform, the world's largest Open Source development site. |