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:
9
post.php
9
post.php
@@ -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);
|
||||
|
Reference in New Issue
Block a user