diff options
author | friendica <info@friendica.com> | 2014-01-22 23:54:14 -0800 |
---|---|---|
committer | friendica <info@friendica.com> | 2014-01-22 23:54:14 -0800 |
commit | bf8e73ca739d60a9c80acb007d794d0a80c3e5ac (patch) | |
tree | f30b68e1dda2e25799ec4765d3d24db52dea0014 /include/photo/photo_driver.php | |
parent | bc98f4ddf4cdfa655385c705d97fa006ada9c49f (diff) | |
download | volse-hubzilla-bf8e73ca739d60a9c80acb007d794d0a80c3e5ac.tar.gz volse-hubzilla-bf8e73ca739d60a9c80acb007d794d0a80c3e5ac.tar.bz2 volse-hubzilla-bf8e73ca739d60a9c80acb007d794d0a80c3e5ac.zip |
missing filename in uploaded photos (we don't really use this, but we will need to have a filename to export via DAV or API and the original filename would be the most likely choice).
Diffstat (limited to 'include/photo/photo_driver.php')
-rw-r--r-- | include/photo/photo_driver.php | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/include/photo/photo_driver.php b/include/photo/photo_driver.php index ff92e5a0f..c2eeafa54 100644 --- a/include/photo/photo_driver.php +++ b/include/photo/photo_driver.php @@ -357,7 +357,7 @@ abstract class photo_driver { dbesc($p['resource_id']), dbesc(datetime_convert()), dbesc(datetime_convert()), - dbesc(basename($filename)), + dbesc(basename($p['filename'])), dbesc($this->getType()), dbesc($p['album']), intval($this->getHeight()), |