diff options
author | Brett Profitt <brett.profitt@gmail.com> | 2012-12-15 12:58:55 -0500 |
---|---|---|
committer | Brett Profitt <brett.profitt@gmail.com> | 2012-12-15 12:58:55 -0500 |
commit | c62260d19232255ed91801bfd3e8887bfe7cfb91 (patch) | |
tree | af08fe1a3ca71b2cffbaad4afae442ac1831c731 /views/installation | |
parent | ea2683430f081d8c4463268ca25993e4af4238bf (diff) | |
download | elgg-c62260d19232255ed91801bfd3e8887bfe7cfb91.tar.gz elgg-c62260d19232255ed91801bfd3e8887bfe7cfb91.tar.bz2 |
Fixes #4491. Automatic fallback to JS to test rewrite rules during installation.
Diffstat (limited to 'views/installation')
-rw-r--r-- | views/installation/install/pages/requirements.php | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/views/installation/install/pages/requirements.php b/views/installation/install/pages/requirements.php index 06f309c90..3f0941c95 100644 --- a/views/installation/install/pages/requirements.php +++ b/views/installation/install/pages/requirements.php @@ -29,11 +29,11 @@ foreach ($report as $category => $checks) { echo "</ul>"; } -$vars['refresh'] = TRUE; +$vars['refresh'] = true; // cannot advance to next step with a failure if ($vars['num_failures'] != 0) { - $vars['advance'] = FALSE; + $vars['advance'] = false; } echo elgg_view('install/nav', $vars); |