Changed some function to public

This commit is contained in:
Tobias Reich 2014-08-26 20:26:14 +02:00
parent 5a2dc947dd
commit 864e5b97d0

View File

@ -152,7 +152,7 @@ class Photo extends Module {
if ($exists===false) { if ($exists===false) {
# Set orientation based on EXIF data # Set orientation based on EXIF data
if ($file['type']==='image/jpeg'&&isset($info['orientation'])&&$info['orientation']!==''&&isset($info['width'])&&isset($info['height'])) { if ($file['type']==='image/jpeg'&&isset($info['orientation'], $info['width'], $info['height'])&&$info['orientation']!=='') {
if (!$this->adjustFile($path, $info)) Log::notice($this->database, __METHOD__, __LINE__, 'Could not adjust photo (' . $info['title'] . ')'); if (!$this->adjustFile($path, $info)) Log::notice($this->database, __METHOD__, __LINE__, 'Could not adjust photo (' . $info['title'] . ')');
} }
@ -332,7 +332,7 @@ class Photo extends Module {
} }
private function adjustFile($path, $info) { public function adjustFile($path, $info) {
# Check dependencies # Check dependencies
self::dependencies(isset($path, $info)); self::dependencies(isset($path, $info));
@ -491,7 +491,7 @@ class Photo extends Module {
} }
private function getInfo($url) { public function getInfo($url) {
# Check dependencies # Check dependencies
self::dependencies(isset($this->database, $url)); self::dependencies(isset($this->database, $url));