This commit is contained in:
Matt Pass
2012-10-23 20:22:13 +01:00
parent e66811a4e2
commit 4b274f959e

View File

@@ -33,7 +33,7 @@ include($settingsFile);
// Add ICEcoder settings to beginning of $ICEcoder array
$ICEcoder = array(
"versionNo" => "0.9.1",
"versionNo" => "1.0.0",
"codeMirrorDir" => "CodeMirror-2.34"
)+$ICEcoder;
@@ -233,7 +233,7 @@ if (!$_SESSION['loggedIn']) {
<html>
<head>
<title>ICEcoder <?php
echo $ICEcoder["versionNo"]." beta : ";
echo $ICEcoder["versionNo"]." : ";
echo $ICEcoder["accountPassword"] == "" ? "Setup" : "Login";
?></title>
<link rel="stylesheet" type="text/css" href="ice-coder.css">
@@ -246,7 +246,7 @@ echo $ICEcoder["accountPassword"] == "" ? "Setup" : "Login";
<div class="screenVCenter">
<div class="screenCenter">
<img src="../images/ice-coder.png">
<div class="version">v <?php echo $ICEcoder["versionNo"];?> beta</div>
<div class="version">v <?php echo $ICEcoder["versionNo"];?></div>
<form name="settingsUpdate" action="settings.php" method="POST">
<input type="password" name="<?php echo $ICEcoder["accountPassword"] == "" ? "account" : "login"; ?>Password" class="accountPassword">
<input type="submit" name="submit" value="<?php echo $ICEcoder["accountPassword"] == "" ? "Set Password" : "Login"; ?>" class="button">