1
0
mirror of https://github.com/e107inc/e107.git synced 2025-08-05 06:07:32 +02:00

Removed embedded <?php ?>

This commit is contained in:
CaMer0n
2009-10-27 01:05:52 +00:00
parent 9532b4fc1e
commit cb5c288522

View File

@@ -5,15 +5,13 @@ if (!defined('e107_INIT'))
require_once("../../class2.php");
}
if(e107::isInstalled('metaweblog'))
if(!e107::isInstalled('metaweblog'))
{
exit();
}
echo "<?xml version=\"1.0\" encoding=\"utf-8\" ?>";
?>
<manifest xmlns="http://schemas.microsoft.com/wlw/manifest/weblog">
echo "<?xml version=\"1.0\" encoding=\"utf-8\" ?>
<manifest xmlns=\"http://schemas.microsoft.com/wlw/manifest/weblog\">
<options>
<clientType>WordPress</clientType>
<supportsKeywords>Yes</supportsKeywords>
@@ -27,13 +25,12 @@ echo "<?xml version=\"1.0\" encoding=\"utf-8\" ?>";
<homepageLinkText>View site</homepageLinkText>
<adminLinkText>Dashboard</adminLinkText>
<adminUrl>
<![CDATA[
<?php echo SITEURLBASE.e_ADMIN_ABS ?>
<![CDATA[". SITEURLBASE.e_ADMIN_ABS."
]]>
</adminUrl>
<postEditingUrl>
<![CDATA[
<?php echo SITEURLBASE.e_ADMIN_ABS."newspost.php?create.edit." ?>{post-id}
".SITEURLBASE.e_ADMIN_ABS."newspost.php?create.edit."."{post-id}
]]>
</postEditingUrl>
</weblog>
@@ -45,17 +42,13 @@ echo "<?xml version=\"1.0\" encoding=\"utf-8\" ?>";
<imageUrl>images/wlw/comments_32.png</imageUrl>
<clickUrl>
<![CDATA[
<?php echo SITEURLBASE.e_ADMIN_ABS."comment.php" ?>
". SITEURLBASE.e_ADMIN_ABS."comment.php
]]>
</clickUrl>
</button>
</buttons>
</manifest>
<?php
}
</manifest>"
?>