Zeile 77 | Zeile 77 |
---|
function upgrade3_convertattachments() {
|
function upgrade3_convertattachments() {
|
global $db, $output;
| global $db, $output, $settings;
|
$output->print_header("Attachment Conversion to Files");
| $output->print_header("Attachment Conversion to Files");
|
Zeile 87 | Zeile 87 |
---|
} else {
|
} else {
|
$app = $_POST['attachmentspage'];
| $app = (int)$_POST['attachmentspage'];
|
}
if($_POST['attachmentstart']) {
|
}
if($_POST['attachmentstart']) {
|
$startat = $_POST['attachmentstart'];
| $startat = (int)$_POST['attachmentstart'];
|
$upper = $startat+$app; $lower = $startat; }
| $upper = $startat+$app; $lower = $startat; }
|
Zeile 227 | Zeile 227 |
---|
} else {
|
} else {
|
$app = $_POST['userspage'];
| $app = (int)$_POST['userspage'];
|
}
if($_POST['avatarstart']) {
|
}
if($_POST['avatarstart']) {
|
$startat = $_POST['avatarstart'];
| $startat = (int)$_POST['avatarstart'];
|
$upper = $startat+$app; $lower = $startat; }
| $upper = $startat+$app; $lower = $startat; }
|