clockwerk-www

Subversion Repositories:
Compare Path: Rev
With Path: Rev
?path1? @ 63  →  ?path2? @ 64
/account.php
@@ -11,7 +11,7 @@
<html>
<head>
<title>Clockwerk</title>
<link rel="stylesheet" href="css/green.css" type="text/css" />
<link rel="stylesheet" href="css/grey.css" type="text/css" />
<meta http-equiv="Content-Type" content="text/html; charset=UTF-8" />
</head>
<body class="dark-grey">
@@ -41,7 +41,7 @@
foreach($rep->params->param->value->struct->member as $member) {
switch($member->name) {
case "success":
switch(boolval($member->value->boolean)) {
switch((bool)$member->value->boolean) {
case TRUE:
echo '<p>Account created successfully.</p>';
goto last;
/resetpassword.php
@@ -11,7 +11,7 @@
<html>
<head>
<title>Clockwerk</title>
<link rel="stylesheet" href="css/green.css" type="text/css" />
<link rel="stylesheet" href="css/gray.css" type="text/css" />
<meta http-equiv="Content-Type" content="text/html; charset=UTF-8" />
</head>
<body class="dark-grey">
@@ -47,7 +47,7 @@
foreach($rep->params->param->value->struct->member as $member) {
switch($member->name) {
case "success":
switch(boolval($member->value->boolean)) {
switch((bool)$member->value->boolean) {
case TRUE:
echo '<p>Account updated successfully.</p>';
goto last;