Package: movabletype-opensource Version: 4.2.1-1 Severity: minor Tags: patch
/MT/App/Comments.pm:1154 contains:
my $session_key = $cookies{$cookie_name}->value() || "";
but if cookies{c_n} undefined the value part fails. Maybe
it would help to write
my $session_key = defined($cookies{$cookie_name}) ?
$cookies{$cookie_name}->value() | "" : "";
--
To UNSUBSCRIBE, email to [EMAIL PROTECTED]
with a subject of "unsubscribe". Trouble? Contact [EMAIL PROTECTED]

