diff options
author | Tom Adams <tom@holizz.com> | 2009-07-28 06:19:02 +0100 |
---|---|---|
committer | Craig Andrews <candrews@integralblue.com> | 2009-07-29 16:54:13 -0400 |
commit | 3350770cc7d4636fa1c0942ed01d5f26a5faa66a (patch) | |
tree | 9985d02b517169c34d95676717bd35456e9a7646 | |
parent | 6b48fd8f86cd4e6ee7309104bdb4e5b44b9b60c6 (diff) |
Use <?php not <?.
-rw-r--r-- | install.php | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/install.php b/install.php index 901e502f1..334671599 100644 --- a/install.php +++ b/install.php @@ -77,7 +77,7 @@ function checkPrereqs() if (!is_writable($fileFullPath)) { ?><p class="error">Cannot write <?php echo $fileSubdir; ?> directory: <code><?php echo $fileFullPath; ?></code></p> <p>On your server, try this command: <code>chmod a+w <?php echo $fileFullPath; ?></code></p> - <? + <?php $pass = false; } } |