[CS-Project-svn_notify] SF.net SVN: cs-project:[923] trunk/1.2/includes/content/tags.inc
Brought to you by:
crazedsanity
From: <cra...@us...> - 2009-02-04 19:15:58
|
Revision: 923 http://cs-project.svn.sourceforge.net/cs-project/?rev=923&view=rev Author: crazedsanity Date: 2009-02-04 19:15:53 +0000 (Wed, 04 Feb 2009) Log Message: ----------- Fix problem wherein an ajax call that updates tag list leaves unused template vars visible (#239). Modified Paths: -------------- trunk/1.2/includes/content/tags.inc Modified: trunk/1.2/includes/content/tags.inc =================================================================== --- trunk/1.2/includes/content/tags.inc 2009-02-04 19:09:54 UTC (rev 922) +++ trunk/1.2/includes/content/tags.inc 2009-02-04 19:15:53 UTC (rev 923) @@ -300,6 +300,8 @@ $retval = mini_parser($myRow, array('tag_row'=>$recordList), '{', '}'); $retval = mini_parser($outerTemplate, array('availableTagsList' => $retval), '{', '}'); + $retval = $page->strip_undef_template_vars($retval); + return($retval); }//end updateTagList() This was sent by the SourceForge.net collaborative development platform, the world's largest Open Source development site. |