Replaced all short tags
This commit is contained in:
@@ -36,11 +36,11 @@ function printHeader($withmenu="default") {
|
|||||||
?>
|
?>
|
||||||
<html>
|
<html>
|
||||||
<head>
|
<head>
|
||||||
<title>PHPki: <?=$title?> </title>
|
<title>PHPki: <?php echo $title?> </title>
|
||||||
<link rel="stylesheet" type="text/css" href="<?=$style_css?>">
|
<link rel="stylesheet" type="text/css" href="<?php echo $style_css?>">
|
||||||
</head>
|
</head>
|
||||||
<body>
|
<body>
|
||||||
<?
|
<?php
|
||||||
|
|
||||||
if (isKonq()) {
|
if (isKonq()) {
|
||||||
$logoclass = 'logo-konq';
|
$logoclass = 'logo-konq';
|
||||||
@@ -54,9 +54,9 @@ function printHeader($withmenu="default") {
|
|||||||
}
|
}
|
||||||
|
|
||||||
?>
|
?>
|
||||||
<div class=<?=$logoclass?>>PHPki</div>
|
<div class=<?php echo $logoclass?>>PHPki</div>
|
||||||
<div class=<?=$titleclass?>><?=$title?></div>
|
<div class=<?php echo $titleclass?>><?php echo $title?></div>
|
||||||
<?
|
<?php
|
||||||
|
|
||||||
switch ($withmenu) {
|
switch ($withmenu) {
|
||||||
case false:
|
case false:
|
||||||
@@ -64,12 +64,12 @@ function printHeader($withmenu="default") {
|
|||||||
break;
|
break;
|
||||||
case 'setup':
|
case 'setup':
|
||||||
?>
|
?>
|
||||||
<div class=<?=$menuclass?>>
|
<div class=<?php echo $menuclass?>>
|
||||||
<a class=<?=$menuclass?> href=readme.php>ReadMe</a>
|
<a class=<?php echo $menuclass?> href=readme.php>ReadMe</a>
|
||||||
<a class=<?=$menuclass?> href=setup.php>Setup</a>
|
<a class=<?php echo $menuclass?> href=setup.php>Setup</a>
|
||||||
<a class=<?=$menuclass?> href=about.php target=_about>About</a>
|
<a class=<?php echo $menuclass?> href=about.php target=_about>About</a>
|
||||||
</div>
|
</div>
|
||||||
<?
|
<?php
|
||||||
break;
|
break;
|
||||||
case 'public':
|
case 'public':
|
||||||
print "<div class=$menuclass>";
|
print "<div class=$menuclass>";
|
||||||
@@ -86,8 +86,8 @@ function printHeader($withmenu="default") {
|
|||||||
print '<a class='.$menuclass.' style="color: red" href=policy.html target=help>Policy</a>';
|
print '<a class='.$menuclass.' style="color: red" href=policy.html target=help>Policy</a>';
|
||||||
}
|
}
|
||||||
?>
|
?>
|
||||||
<a class=<?=$menuclass?> href=help.php target=_help>Help</a>
|
<a class=<?php echo $menuclass?> href=help.php target=_help>Help</a>
|
||||||
<a class=<?=$menuclass?> href=about.php target=_about>About</a>
|
<a class=<?php echo $menuclass?> href=about.php target=_about>About</a>
|
||||||
</div>
|
</div>
|
||||||
<?
|
<?
|
||||||
break;
|
break;
|
||||||
@@ -107,13 +107,13 @@ function printHeader($withmenu="default") {
|
|||||||
print '<a class='.$menuclass.' style="color: red" href=../policy.html target=help>Policy</a>';
|
print '<a class='.$menuclass.' style="color: red" href=../policy.html target=help>Policy</a>';
|
||||||
}
|
}
|
||||||
?>
|
?>
|
||||||
<a class=<?=$menuclass?> href=../help.php target=_help>Help</a>
|
<a class=<?php echo $menuclass?> href=../help.php target=_help>Help</a>
|
||||||
<a class=<?=$menuclass?> href=../about.php target=_about>About</a>
|
<a class=<?php echo $menuclass?> href=../about.php target=_about>About</a>
|
||||||
</div>
|
</div>
|
||||||
<?
|
<?php
|
||||||
}
|
}
|
||||||
|
|
||||||
?><hr width=99% align=left color=#99caff><?
|
?><hr width=99% align=left color=#99caff><?php
|
||||||
}
|
}
|
||||||
|
|
||||||
|
|
||||||
@@ -121,10 +121,10 @@ function printFooter() {
|
|||||||
?>
|
?>
|
||||||
<br>
|
<br>
|
||||||
<hr width=99% align=left color=#99caff>
|
<hr width=99% align=left color=#99caff>
|
||||||
<center style='margin-top: -5px; font-size: 8pt'>PHPki v<?=PHPKI_VERSION?> - Copyright 2003 - William E. Roadcap</center><br>
|
<center style='margin-top: -5px; font-size: 8pt'>PHPki v<?php echo PHPKI_VERSION?> - Copyright 2003 - William E. Roadcap</center><br>
|
||||||
</body>
|
</body>
|
||||||
</html>
|
</html>
|
||||||
<?
|
<?php
|
||||||
}
|
}
|
||||||
|
|
||||||
?>
|
?>
|
||||||
|
Reference in New Issue
Block a user