1
0
mirror of https://github.com/e107inc/e107.git synced 2025-08-03 21:27:25 +02:00

Forgot two on previous commit

This commit is contained in:
Moc
2013-03-27 21:14:43 +01:00
parent 49f4c1eff8
commit 737caec05d

View File

@@ -560,6 +560,7 @@ function step6()
function step7() function step7()
{ {
$e107 = e107::getInstance(); $e107 = e107::getInstance();
$ns = e107::getRender();
$stepCaption = 'Step 7: Calculate user post counts'; $stepCaption = 'Step 7: Calculate user post counts';
if(!isset($_POST['calculate_usercounts'])) if(!isset($_POST['calculate_usercounts']))
{ {
@@ -570,7 +571,7 @@ function step7()
<input class='btn button' type='submit' name='calculate_usercounts' value='Proceed with post count calculation' /> <input class='btn button' type='submit' name='calculate_usercounts' value='Proceed with post count calculation' />
</form> </form>
"; ";
$e107->ns->tablerender($stepCaption, $text); $ns->tablerender($stepCaption, $text);
return; return;
} }
@@ -595,7 +596,7 @@ function step7()
<input class='btn button' type='submit' name='nextStep[8]' value='Proceed to step 8' /> <input class='btn button' type='submit' name='nextStep[8]' value='Proceed to step 8' />
</form> </form>
"; ";
$e107->ns->tablerender($stepCaption, $text); $ns->tablerender($stepCaption, $text);
} }
function step8() function step8()