diff options
author | zotlabs <mike@macgirvin.com> | 2016-10-23 21:35:06 -0700 |
---|---|---|
committer | zotlabs <mike@macgirvin.com> | 2016-10-23 21:35:06 -0700 |
commit | 5dc8c54b8d3bd696095788704d4f8f8228c53522 (patch) | |
tree | a4baf0af2369289b72c383266602201479dafdfa | |
parent | 20194bed424d9dac2b9506067adde97bfe83ea0d (diff) | |
download | volse-hubzilla-5dc8c54b8d3bd696095788704d4f8f8228c53522.tar.gz volse-hubzilla-5dc8c54b8d3bd696095788704d4f8f8228c53522.tar.bz2 volse-hubzilla-5dc8c54b8d3bd696095788704d4f8f8228c53522.zip |
found it...
-rw-r--r-- | include/photo/photo_driver.php | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/include/photo/photo_driver.php b/include/photo/photo_driver.php index 87e4cbd0c..af4fd0a30 100644 --- a/include/photo/photo_driver.php +++ b/include/photo/photo_driver.php @@ -378,7 +378,7 @@ abstract class photo_driver { dbesc($p['album']), intval($this->getHeight()), intval($this->getWidth()), - (intval($p['os_storage']) ? dbesc($p['os_path']) : dbescbin($this->imageString())), + (intval($p['os_storage']) ? dbescbin($p['os_path']) : dbescbin($this->imageString())), intval($p['os_storage']), intval(strlen($this->imageString())), intval($p['imgscale']), @@ -409,7 +409,7 @@ abstract class photo_driver { dbesc($p['album']), intval($this->getHeight()), intval($this->getWidth()), - (intval($p['os_storage']) ? dbesc($p['os_path']) : dbescbin($this->imageString())), + (intval($p['os_storage']) ? dbescbin($p['os_path']) : dbescbin($this->imageString())), intval($p['os_storage']), intval(strlen($this->imageString())), intval($p['imgscale']), |