From f256dc81d2f5f146697634d5558ecb2a1915df48 Mon Sep 17 00:00:00 2001 From: hickert Date: Fri, 13 Apr 2007 07:51:19 +0000 Subject: [PATCH] Disable forward button if we reached the last step git-svn-id: https://oss.gonicus.de/repositories/gosa/trunk@6044 594d385d-05f5-0310-b6e9-bd551577e9d8 --- setup/class_setup.inc | 6 +++++- 1 file changed, 5 insertions(+), 1 deletion(-) diff --git a/setup/class_setup.inc b/setup/class_setup.inc index fd15d2769..8ff19b506 100644 --- a/setup/class_setup.inc +++ b/setup/class_setup.inc @@ -224,7 +224,11 @@ class setup $str .= ""; } - $str .= ""; + if(isset($this->o_steps[$this->i_current + 1])){ + $str .= ""; + }else{ + $str .= ""; + } $str .=""; return($str); } -- 2.30.2