From: hickert Date: Fri, 13 Apr 2007 07:51:19 +0000 (+0000) Subject: Disable forward button if we reached the last step X-Git-Url: https://git.tokkee.org/?a=commitdiff_plain;h=f256dc81d2f5f146697634d5558ecb2a1915df48;p=gosa.git 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 --- 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); }