[Cs-project-svn_notify] SF.net SVN: cs-project: [649] trunk/includes/content/helpdesk.inc
Brought to you by:
crazedsanity
From: <cra...@us...> - 2007-11-21 16:44:17
|
Revision: 649 http://cs-project.svn.sourceforge.net/cs-project/?rev=649&view=rev Author: crazedsanity Date: 2007-11-21 08:44:10 -0800 (Wed, 21 Nov 2007) Log Message: ----------- Add random to redirect URL (avoid browser cache), auto-select bug for new issues. Modified Paths: -------------- trunk/includes/content/helpdesk.inc Modified: trunk/includes/content/helpdesk.inc =================================================================== --- trunk/includes/content/helpdesk.inc 2007-11-21 15:55:00 UTC (rev 648) +++ trunk/includes/content/helpdesk.inc 2007-11-21 16:44:10 UTC (rev 649) @@ -2,10 +2,10 @@ /* * SVN INFORMATION::: * ------------------ - * Last Author: $Author$ - * Current Revision: $Revision$ - * Repository Location: $HeadURL$ - * Last Updated: $Date$ + * Last Author: $Author:crazedsanity $ + * Current Revision: $Revision:637 $ + * Repository Location: $HeadURL:https://cs-project.svn.sourceforge.net/svnroot/cs-project/trunk/includes/content/helpdesk.inc $ + * Last Updated: $Date:2007-11-20 11:04:33 -0600 (Tue, 20 Nov 2007) $ */ if($_POST) { $action = strtolower($_POST['action']); @@ -180,7 +180,7 @@ if(!$byPassUrlExtras && count($urlExtrasArr) > 0) { $urlExtrasStr = string_from_array($urlExtrasArr, "url"); if($urlExtrasStr !== 0) { - $url .= "?". $urlExtrasStr; + $url .= "?". $urlExtrasStr .'&random='. time(); } } conditional_header($url); @@ -205,7 +205,7 @@ $page->set_all_block_rows("content"); //show the "category" selection. - $categoryList = $proj->helpdeskObj->get_category_list(); + $categoryList = $proj->helpdeskObj->get_category_list('bug'); $page->add_template_var("select_tags", $categoryList); // This was sent by the SourceForge.net collaborative development platform, the world's largest Open Source development site. |