diff options
author | Tom Adams <tom@holizz.com> | 2009-07-30 20:38:34 +0100 |
---|---|---|
committer | Tom Adams <tom@holizz.com> | 2009-08-04 01:24:25 +0100 |
commit | 4e9db95bcfe7818f4f937f3e29f31ea64cd73330 (patch) | |
tree | 7dc7dc1896bbe7fce94a946d9302a033d0ecbcdd /install.php | |
parent | ff6e976d0315c57fc5b7e31845e9a3bad4f095bc (diff) |
Use <?php echo instead of <?print
Diffstat (limited to 'install.php')
-rw-r--r-- | install.php | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/install.php b/install.php index c222afa7b..227f99789 100644 --- a/install.php +++ b/install.php @@ -163,7 +163,7 @@ E_O_T; function updateStatus($status, $error=false) { ?> - <li <?php echo ($error) ? 'class="error"': ''; ?>><?print $status;?></li> + <li <?php echo ($error) ? 'class="error"': ''; ?>><?php echo $status;?></li> <?php } |