[CS-Project-svn_notify] SF.net SVN: cs-project: [847] trunk/1.2/includes/content/helpdesk.inc
Brought to you by:
crazedsanity
From: <cra...@us...> - 2008-02-20 22:55:55
|
Revision: 847 http://cs-project.svn.sourceforge.net/cs-project/?rev=847&view=rev Author: crazedsanity Date: 2008-02-20 14:55:52 -0800 (Wed, 20 Feb 2008) Log Message: ----------- Fix so creating new issues again redirects to the issue or linked project. Modified Paths: -------------- trunk/1.2/includes/content/helpdesk.inc Modified: trunk/1.2/includes/content/helpdesk.inc =================================================================== --- trunk/1.2/includes/content/helpdesk.inc 2008-02-20 19:57:28 UTC (rev 846) +++ trunk/1.2/includes/content/helpdesk.inc 2008-02-20 22:55:52 UTC (rev 847) @@ -180,7 +180,7 @@ $url = $baseUrl; //don't bother redirecting to the "view" page if the ID isn't valid. - if(preg_match('/view/', $urlSection) && !is_numeric($urlExtrasArr['ID'])) { + if(preg_match('/view/', $urlSection) && !is_numeric($urlExtrasArr['ID']) && $byPassUrlExtras === FALSE) { unset($urlSection); } else { This was sent by the SourceForge.net collaborative development platform, the world's largest Open Source development site. |