==== Wikka Mod 028 ==== Type: Bug Fix ---- ===Credit:=== **[[JsnX | Jason Tourtelotte]]** ---- Found out that the Category action relied on the double doublequote insecurity for html formatting. Fixed with the code below. **actions/category.php** %%(php) getPageTag(); } // $page= preg_replace( "/(\w+)\s(\w+)/", "$1$2",$page); if ($class) {$class="class=\"$class\"";} if (!$page) {$page=$cattag;} if ($results = $this->FullCategoryTextSearch($page)) { if (!$compact) $str .= 'The following '.(count($results)-1).' pages belong to ' . $page . ':

'; else $str .= '
"; $count=0; } if (!$compact) $str .= ''; else $str .= '
  • '.$this->Format('[['.$val.' | '.preg_replace( "/Category/", "",$val).']]').'
  • '; $count++; } if (!$compact) $str .= '
    '.$this->Format('[['.$val.']]').'
    '; else $str .= ''; } else $str .= 'Sorry, no Items found for ' . $page .'.'; print($str); } ?> %%