Removed importFilename setting
This commit is contained in:
parent
a06bc1786a
commit
49fd3967b6
@ -38,10 +38,4 @@ If `1`, Lychee will check if you are using the latest version. The notice will b
|
|||||||
|
|
||||||
sorting = ORDER BY [row] [ASC|DESC]
|
sorting = ORDER BY [row] [ASC|DESC]
|
||||||
|
|
||||||
A typical part of a MySQL statement. This string will be appended to mostly every MySQL query.
|
A typical part of a MySQL statement. This string will be appended to mostly every MySQL query.
|
||||||
|
|
||||||
#### Import Filename
|
|
||||||
|
|
||||||
importFilename = [0|1]
|
|
||||||
|
|
||||||
If `1`, Lychee will import the filename of the upload file.
|
|
@ -101,8 +101,7 @@ function dbCreateTables($database) {
|
|||||||
('password',''),
|
('password',''),
|
||||||
('thumbQuality','90'),
|
('thumbQuality','90'),
|
||||||
('checkForUpdates','1'),
|
('checkForUpdates','1'),
|
||||||
('sorting','ORDER BY id DESC'),
|
('sorting','ORDER BY id DESC');
|
||||||
('importFilename','1');
|
|
||||||
|
|
||||||
";
|
";
|
||||||
|
|
||||||
|
@ -93,9 +93,6 @@ function update() {
|
|||||||
if($database->query("SELECT `description` FROM `lychee_photos` LIMIT 1;")) $database->query("ALTER TABLE `lychee_photos` CHANGE `description` `description` VARCHAR( 1000 ) NULL DEFAULT ''");
|
if($database->query("SELECT `description` FROM `lychee_photos` LIMIT 1;")) $database->query("ALTER TABLE `lychee_photos` CHANGE `description` `description` VARCHAR( 1000 ) NULL DEFAULT ''");
|
||||||
if(!$database->query("SELECT `tags` FROM `lychee_photos` LIMIT 1;")) $database->query("ALTER TABLE `lychee_photos` ADD `tags` VARCHAR( 1000 ) NULL DEFAULT ''");
|
if(!$database->query("SELECT `tags` FROM `lychee_photos` LIMIT 1;")) $database->query("ALTER TABLE `lychee_photos` ADD `tags` VARCHAR( 1000 ) NULL DEFAULT ''");
|
||||||
$database->query("UPDATE `lychee_photos` SET url = replace(url, 'uploads/big/', ''), thumbUrl = replace(thumbUrl, 'uploads/thumb/', '')");
|
$database->query("UPDATE `lychee_photos` SET url = replace(url, 'uploads/big/', ''), thumbUrl = replace(thumbUrl, 'uploads/thumb/', '')");
|
||||||
|
|
||||||
$result = $database->query("SELECT `value` FROM `lychee_settings` WHERE `key` = 'importFilename' LIMIT 1;");
|
|
||||||
if ($result->fetch_object()!==true) $database->query("INSERT INTO `lychee_settings` (`key`, `value`) VALUES ('importFilename', '1')");
|
|
||||||
|
|
||||||
return true;
|
return true;
|
||||||
|
|
||||||
|
@ -61,9 +61,8 @@ function upload($files, $albumID) {
|
|||||||
$info = getInfo($photo_name);
|
$info = getInfo($photo_name);
|
||||||
|
|
||||||
// Use title of file if IPTC title missing
|
// Use title of file if IPTC title missing
|
||||||
if ($info['title']===''&&
|
if ($info['title']==='')
|
||||||
$settings['importFilename']==='1')
|
$info['title'] = mysqli_real_escape_string($database, substr(basename($file['name'], ".$extension"), 0, 30));
|
||||||
$info['title'] = mysqli_real_escape_string($database, substr(basename($file['name'], ".$extension"), 0, 30));
|
|
||||||
|
|
||||||
// Set orientation based on EXIF data
|
// Set orientation based on EXIF data
|
||||||
if ($file['type']==='image/jpeg'&&isset($info['orientation'])&&isset($info['width'])&&isset($info['height'])) {
|
if ($file['type']==='image/jpeg'&&isset($info['orientation'])&&isset($info['width'])&&isset($info['height'])) {
|
||||||
|
Loading…
Reference in New Issue
Block a user