- fix: 6.8.7 - CSS layout templates still don't work right in IE

- fix: 6.8 - Unable to change Home page or Not Found [...] blank
 - fix: WebGUI creating bad Live Bookmarks for all SyndicatedObjects
 - fix: RSS Feeds Don't Combine
 - fix: Suspicious code in SyndicatedContent.pm
This commit is contained in:
JT Smith 2006-05-31 21:22:29 +00:00
parent 2568e6c8ce
commit b38f299f90
3 changed files with 51 additions and 60 deletions

View file

@ -187,9 +187,9 @@ sub page {
my $output = undef;
if (defined $asset) {
my $method = "view";
if ($session->form->process("func")) {
$method = $session->form->process("func");
unless ($method =~ /^[A-Za-z]+$/) {
if ($session->form->param("func")) {
$method = $session->form->param("func");
unless ($method =~ /^[A-Za-z0-9]+$/) {
$session->errorHandler->security("to call a non-existent method $method on $assetUrl");
$method = "view";
}