Your message dated Fri, 23 Jan 2009 14:54:40 +0000
with message-id <[email protected]>
and subject line Fixed in 4.2.3-1
has caused the Debian Bug report #498382,
regarding movabletype-opensource: /MT/App/Comments.pm:1154 Can't call method
"value" on an undefined value
to be marked as done.
This means that you claim that the problem has been dealt with.
If this is not the case it is now your responsibility to reopen the
Bug report if necessary, and/or fix the problem forthwith.
(NB: If you are a system administrator and have no idea what this
message is talking about, this may indicate a serious mail system
misconfiguration somewhere. Please contact [email protected]
immediately.)
--
498382: http://bugs.debian.org/cgi-bin/bugreport.cgi?bug=498382
Debian Bug Tracking System
Contact [email protected] with problems
--- Begin Message ---
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() | "" : "";
--- End Message ---
--- Begin Message ---
This bug was fixed in movabletype-opensource 4.2.3-1. Apologies for
the late notification.
Cheers,
Dominic.
--
Dominic Hargreaves | http://www.larted.org.uk/~dom/
PGP key 5178E2A5 from the.earth.li (keyserver,web,email)
--- End Message ---