Stopped storing the full path name of the images in the database. Should make it easier/possible to move the imageboard later.

This commit is contained in:
Savetheinternet
2010-11-05 20:51:39 +11:00
parent 247772323e
commit 43b62acb44
2 changed files with 12 additions and 5 deletions

View File

@@ -180,6 +180,10 @@
$post['thumbheight'] = $thumb['height'];
}
// Remove DIR_* before inserting them into the database.
$post['file'] = substr_replace($post['file'], '', 0, strlen(DIR_IMG));
$post['thumb'] = substr_replace($post['thumb'], '', 0, strlen(DIR_THUMB));
// Todo: Validate some more, remove messy code, allow more specific configuration
// MySQLify
@@ -266,6 +270,10 @@
$dump_post['thumbwidth'] = $thumb['width'];
$dump_post['thumbheight'] = $thumb['height'];
// Remove DIR_* before inserting them into the database.
$dump_post['file'] = substr_replace($dump_post['file'], '', 0, strlen(DIR_IMG));
$dump_post['thumb'] = substr_replace($dump_post['thumb'], '', 0, strlen(DIR_THUMB));
// Create the post
post($dump_post, false);
}
@@ -303,7 +311,6 @@
} else {
if(!file_exists(FILE_INDEX)) {
buildIndex();
sql_close();
}
header('Location: ' . ROOT . FILE_INDEX, true, 302);