Commit 2f9bd287 authored by myk%mozilla.org's avatar myk%mozilla.org

Last part of fix for bug 146945: Hack to support format=rdf for legacy…

Last part of fix for bug 146945: Hack to support format=rdf for legacy applications that don't know to do ctype=rdf instead. r=gerv
parent 57027d51
......@@ -86,6 +86,12 @@ else {
quietly_check_login();
}
# Hack to support legacy applications that think the RDF ctype is at format=rdf.
if ($::FORM{'format'} eq "rdf" && !$::FORM{'ctype'}) {
$::FORM{'ctype'} = "rdf";
delete($::FORM{'format'});
}
# Determine the format in which the user would like to receive the output.
# Uses the default format if the user did not specify an output format;
# otherwise validates the user's choice against the list of available formats.
......
Markdown is supported
0% or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment