Merge branch 'mattsches-hotfix/undefined_vars' into develop
This commit is contained in:
commit
5b97a295d5
@ -33,7 +33,7 @@ class Guest extends Access {
|
|||||||
|
|
||||||
# Error
|
# Error
|
||||||
default: exit('Error: Function not found! Please check the spelling of the called function.');
|
default: exit('Error: Function not found! Please check the spelling of the called function.');
|
||||||
return false; break;
|
break;
|
||||||
|
|
||||||
}
|
}
|
||||||
|
|
||||||
|
@ -195,7 +195,7 @@ class Album extends Module {
|
|||||||
# Execute query
|
# Execute query
|
||||||
$albums = $this->database->query($query);
|
$albums = $this->database->query($query);
|
||||||
if (!$albums) {
|
if (!$albums) {
|
||||||
Log::error($database, __METHOD__, __LINE__, 'Could not get all albums (' . $database->error . ')');
|
Log::error($this->database, __METHOD__, __LINE__, 'Could not get all albums (' . $this->database->error . ')');
|
||||||
exit('Error: ' . $this->database->error);
|
exit('Error: ' . $this->database->error);
|
||||||
}
|
}
|
||||||
|
|
||||||
|
@ -277,6 +277,7 @@ if(!defined('LYCHEE')) exit('Error: Direct access is not allowed!');
|
|||||||
# This avoids problems with placeholders in user-input
|
# This avoids problems with placeholders in user-input
|
||||||
# $skip = Number of placeholders which need to be skipped
|
# $skip = Number of placeholders which need to be skipped
|
||||||
$skip = 0;
|
$skip = 0;
|
||||||
|
$temp = '';
|
||||||
$num = array(
|
$num = array(
|
||||||
'placeholder' => substr_count($query, '?'),
|
'placeholder' => substr_count($query, '?'),
|
||||||
'data' => count($data)
|
'data' => count($data)
|
||||||
|
@ -11,7 +11,6 @@ class Import extends Module {
|
|||||||
|
|
||||||
private $database = null;
|
private $database = null;
|
||||||
private $settings = null;
|
private $settings = null;
|
||||||
private $albumIDs = null;
|
|
||||||
|
|
||||||
public function __construct($database, $plugins, $settings) {
|
public function __construct($database, $plugins, $settings) {
|
||||||
|
|
||||||
|
@ -486,8 +486,6 @@ class Photo extends Module {
|
|||||||
|
|
||||||
if (extension_loaded('imagick')&&$this->settings['imagick']==='1') {
|
if (extension_loaded('imagick')&&$this->settings['imagick']==='1') {
|
||||||
|
|
||||||
$rotateImage = 0;
|
|
||||||
|
|
||||||
switch ($info['orientation']) {
|
switch ($info['orientation']) {
|
||||||
|
|
||||||
case 3:
|
case 3:
|
||||||
@ -535,7 +533,6 @@ class Photo extends Module {
|
|||||||
break;
|
break;
|
||||||
|
|
||||||
case 3:
|
case 3:
|
||||||
$process = true;
|
|
||||||
$sourceImg = imagerotate($sourceImg, -180, 0);
|
$sourceImg = imagerotate($sourceImg, -180, 0);
|
||||||
break;
|
break;
|
||||||
|
|
||||||
@ -552,7 +549,6 @@ class Photo extends Module {
|
|||||||
break;
|
break;
|
||||||
|
|
||||||
case 6:
|
case 6:
|
||||||
$process = true;
|
|
||||||
$sourceImg = imagerotate($sourceImg, -90, 0);
|
$sourceImg = imagerotate($sourceImg, -90, 0);
|
||||||
$newWidth = $info['height'];
|
$newWidth = $info['height'];
|
||||||
$newHeight = $info['width'];
|
$newHeight = $info['width'];
|
||||||
@ -566,7 +562,6 @@ class Photo extends Module {
|
|||||||
break;
|
break;
|
||||||
|
|
||||||
case 8:
|
case 8:
|
||||||
$process = true;
|
|
||||||
$sourceImg = imagerotate($sourceImg, 90, 0);
|
$sourceImg = imagerotate($sourceImg, 90, 0);
|
||||||
$newWidth = $info['height'];
|
$newWidth = $info['height'];
|
||||||
$newHeight = $info['width'];
|
$newHeight = $info['width'];
|
||||||
|
@ -20,7 +20,6 @@ class Plugins implements \SplSubject {
|
|||||||
if (!isset($files)) return false;
|
if (!isset($files)) return false;
|
||||||
|
|
||||||
# Init vars
|
# Init vars
|
||||||
$plugins = $this;
|
|
||||||
$this->files = $files;
|
$this->files = $files;
|
||||||
|
|
||||||
# Load plugins
|
# Load plugins
|
||||||
|
Loading…
Reference in New Issue
Block a user