other/upgrade.php 2 locations
|
@@ 200-201 (lines=2) @@
|
| 197 |
|
'db_error_skip' => true, |
| 198 |
|
) |
| 199 |
|
); |
| 200 |
|
while ($row = $smcFunc['db_fetch_assoc']($request)) |
| 201 |
|
$modSettings[$row['variable']] = $row['value']; |
| 202 |
|
$smcFunc['db_free_result']($request); |
| 203 |
|
} |
| 204 |
|
|
|
@@ 503-504 (lines=2) @@
|
| 500 |
|
) |
| 501 |
|
); |
| 502 |
|
$modSettings = array(); |
| 503 |
|
while ($row = $smcFunc['db_fetch_assoc']($request)) |
| 504 |
|
$modSettings[$row['variable']] = $row['value']; |
| 505 |
|
$smcFunc['db_free_result']($request); |
| 506 |
|
} |
| 507 |
|
else |
other/install.php 1 location
|
@@ 1069-1070 (lines=2) @@
|
| 1066 |
|
$modSettings = array(); |
| 1067 |
|
if ($result !== false) |
| 1068 |
|
{ |
| 1069 |
|
while ($row = $smcFunc['db_fetch_assoc']($result)) |
| 1070 |
|
$modSettings[$row['variable']] = $row['value']; |
| 1071 |
|
$smcFunc['db_free_result']($result); |
| 1072 |
|
|
| 1073 |
|
// Do they match? If so, this is just a refresh so charge on! |