@@ -0,0 +1,17 @@
+Index: share/include/classes/class.common.php
+===================================================================
+--- share/include/classes/class.common.php (Revision 9375)
++++ share/include/classes/class.common.php (Arbeitskopie)
+@@ -206,7 +206,11 @@
+ function readTraps() {
+ if (DEBUG&&DEBUGLEVEL&1) debug('Start method common::readTraps()');
+ global $configINI, $hostname, $FRONTEND;
+- $step = $configINI['global']['step'];
++ if ( isset($_GET['step']) && is_numeric($_GET['step']) ) {
++ $step = $_GET['step'];
++ } else {
++ $step = $configINI['global']['step'];
++ }
+ if(!$_GET['site']){
+ $site = 0;
+ $from = 0;
|