other/install.php 1 location
|
@@ 118-121 (lines=4) @@
|
| 115 |
|
$incontext['skip'] = false; |
| 116 |
|
|
| 117 |
|
// Call the step and if it returns false that means pause! |
| 118 |
|
if (function_exists($step[2]) && $step[2]() === false) |
| 119 |
|
break; |
| 120 |
|
elseif (function_exists($step[2])) |
| 121 |
|
$incontext['current_step']++; |
| 122 |
|
|
| 123 |
|
// No warnings pass on. |
| 124 |
|
$incontext['warning'] = ''; |
other/upgrade.php 1 location
|
@@ 280-283 (lines=4) @@
|
| 277 |
|
} |
| 278 |
|
|
| 279 |
|
// Call the step and if it returns false that means pause! |
| 280 |
|
if (function_exists($step[2]) && $step[2]() === false) |
| 281 |
|
break; |
| 282 |
|
elseif (function_exists($step[2])) |
| 283 |
|
$upcontext['current_step']++; |
| 284 |
|
} |
| 285 |
|
$upcontext['overall_percent'] += $step[3]; |
| 286 |
|
} |