From 6e0c8998901bcae422a41d630c8cb95441239f7b Mon Sep 17 00:00:00 2001 From: cash Date: Fri, 1 Oct 2010 12:13:24 +0000 Subject: Refs #2129 - integrates new installer code from http://github.com/cash/Elgg - does not work yet with non-Apache web servers git-svn-id: http://code.elgg.org/elgg/trunk@6991 36083f99-b078-4883-b0ff-0f9b5a30f544 --- views/failsafe/install/nav.php | 35 +++++++++++++++++++++++++++++++++++ 1 file changed, 35 insertions(+) create mode 100644 views/failsafe/install/nav.php (limited to 'views/failsafe/install/nav.php') diff --git a/views/failsafe/install/nav.php b/views/failsafe/install/nav.php new file mode 100644 index 000000000..d6a20ea2b --- /dev/null +++ b/views/failsafe/install/nav.php @@ -0,0 +1,35 @@ +$refresh_text"; +} + +// create next button and selectively disable +$next_text = elgg_echo('next'); +$next_link = "{$vars['url']}install.php?step={$vars['next_step']}"; +$next = "$next_text"; +if (isset($vars['advance']) && !$vars['advance']) { + // disable the next button + $next = "$next_text"; +} + + +echo <<<___END +
+ $next + $refresh +
+ +___END; -- cgit v1.2.3