2
0
mirror of https://github.com/ACSPRI/queXS synced 2024-04-02 12:12:16 +00:00

Replaced the rest of the short tags with long ones

This commit is contained in:
Adam Zammit
2013-01-24 15:33:27 +11:00
parent ec5c6fa833
commit 28e0606088
56 changed files with 243 additions and 254 deletions

View File

@@ -1,4 +1,4 @@
<?
<?php
/**
* Functions related to XHTML code generation
*
@@ -50,8 +50,8 @@ print "<?xml version=\"1.0\" encoding=\"utf-8\"?>";
<!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.1//EN"
"http://www.w3.org/TR/xhtml11/DTD/xhtml11.dtd">
<html xmlns="http://www.w3.org/1999/xhtml" xml:lang="en">
<head><title><? if (empty($title)) print "queXS"; else print "queXS: $title"; ?></title>
<?
<head><title><?php if (empty($title)) print "queXS"; else print "queXS: $title"; ?></title>
<?php
if ($css)
foreach ($css as $c) print "<link rel='stylesheet' href='$c' type='text/css'></link>";
if ($javascript)
@@ -67,7 +67,7 @@ print "<?xml version=\"1.0\" encoding=\"utf-8\"?>";
if (!$body) return;
?>
</head>
<?
<?php
if ($bodytext) print "<body $bodytext>"; else print "<body>";
}
@@ -83,7 +83,7 @@ function xhtml_foot()
</body>
</html>
<?
<?php
}
/**