[CS-Project-svn_notify] SF.net SVN: cs-project: [703] trunk/lib/helpdeskClass.php
Brought to you by:
crazedsanity
From: <cra...@us...> - 2007-12-18 22:09:29
|
Revision: 703 http://cs-project.svn.sourceforge.net/cs-project/?rev=703&view=rev Author: crazedsanity Date: 2007-12-18 14:09:28 -0800 (Tue, 18 Dec 2007) Log Message: ----------- Fix initial priority based on tag modifier (#77). /lib/helpdeskClass.php: * create_record(): -- pass TRUE as arg #1 to tagClass::get_tag_list() so "modifier" is available (to change priority). Modified Paths: -------------- trunk/lib/helpdeskClass.php Modified: trunk/lib/helpdeskClass.php =================================================================== --- trunk/lib/helpdeskClass.php 2007-12-18 22:04:15 UTC (rev 702) +++ trunk/lib/helpdeskClass.php 2007-12-18 22:09:28 UTC (rev 703) @@ -297,7 +297,7 @@ if(is_array($dataArr['initialTag']) && count($dataArr['initialTag'])) { //get the list of tags, so we know what the total modifier is. - $allTags = $tagObj->get_tag_list(); + $allTags = $tagObj->get_tag_list(TRUE); foreach($dataArr['initialTag'] as $id) { $dataArr['priority'] += $allTags[$id]['modifier']; This was sent by the SourceForge.net collaborative development platform, the world's largest Open Source development site. |