Various reformats. Changed boolean variables from 1/0 to TRUE/FALSE in multiple files.
This commit is contained in:
@@ -8,27 +8,27 @@
|
||||
*/
|
||||
|
||||
include("functions.php");
|
||||
$version=OL_VERSION;
|
||||
$version = OL_VERSION;
|
||||
|
||||
$print=$_REQUEST['print'] ?? NULL;
|
||||
$print = $_REQUEST['print'] ?? NULL;
|
||||
|
||||
if ($print) {
|
||||
$sbcolor=P_SIDEBAR_COLOR;
|
||||
$mbgcolor=P_MENUBG_COLOR;
|
||||
$sbcolor = P_SIDEBAR_COLOR;
|
||||
$mbgcolor = P_MENUBG_COLOR;
|
||||
} else {
|
||||
$sbcolor=SIDEBAR_COLOR;
|
||||
$mbgcolor=MENUBG_COLOR;
|
||||
$sbcolor = SIDEBAR_COLOR;
|
||||
$mbgcolor = MENUBG_COLOR;
|
||||
}
|
||||
|
||||
framework("begin","About OpenLog","About OpenLog",$print);
|
||||
framework("begin", "About OpenLog", "About OpenLog", $print);
|
||||
|
||||
pagetable("begin");
|
||||
if(!$print){
|
||||
pageblock("left","begin");
|
||||
if (!$print) {
|
||||
pageblock("left", "begin");
|
||||
sidemenu();
|
||||
pageblock("left","end");
|
||||
pageblock("left", "end");
|
||||
}
|
||||
pageblock("right","begin");
|
||||
pageblock("right", "begin");
|
||||
echo "
|
||||
<h3 align=\"center\">
|
||||
OpenLog $version
|
||||
@@ -87,10 +87,8 @@ border=0></a></td><td><b>Fugue<br>Icons</b></td><td>The icons used in OpenLog ar
|
||||
|
||||
</table>
|
||||
</p>
|
||||
";
|
||||
pageblock("right","end");
|
||||
";
|
||||
pageblock("right", "end");
|
||||
pagetable("end");
|
||||
|
||||
framework("end","","",$print);
|
||||
|
||||
?>
|
||||
framework("end", "", "", $print);
|
||||
|
||||
Reference in New Issue
Block a user