Updated updates.php

Monotone-Parent: 4c5d2c4066a223a058bf92270c21c3319e0a25fc
Monotone-Revision: 9324608c23d9ecf3722d0720d2628281ed725d79

Monotone-Author: flachapelle@inverse.ca
Monotone-Date: 2009-11-11T14:57:15
Monotone-Branch: ca.inverse.sogo
maint-2.0.2
Francis Lachapelle 2009-11-11 14:57:15 +00:00
parent ff1496649f
commit c7c0809c68
1 changed files with 5 additions and 4 deletions

View File

@ -67,15 +67,15 @@ if ( $plugin ) {
<!DOCTYPE RDF>
<RDF xmlns="http://www.w3.org/1999/02/22-rdf-syntax-ns#"
xmlns:em="http://www.mozilla.org/2004/em-rdf#">
<Description about="urn:mozilla:extension:<?= $pluginname ?>">
<Description about="urn:mozilla:extension:<?php echo $pluginname ?>">
<em:updates>
<Seq>
<li>
<Description>
<em:version><?= $plugin["version"] ?></em:version>
<em:version><?php echo $plugin["version"] ?></em:version>
<em:targetApplication>
<Description><?= $applications[$plugin["application"]] ?>
<em:updateLink>http://inverse.ca/downloads/extensions/<?= $plugin["filename"] ?></em:updateLink>
<Description><?php echo $applications[$plugin["application"]] ?>
<em:updateLink>http://inverse.ca/downloads/extensions/<?php echo $plugin["filename"] ?></em:updateLink>
</Description>
</em:targetApplication>
</Description>
@ -89,3 +89,4 @@ if ( $plugin ) {
header("Content-type: text/plain; charset=utf-8", true, 404);
echo( 'Plugin not found' );
}
?>