diff options
author | friendica <info@friendica.com> | 2015-03-04 18:55:17 -0800 |
---|---|---|
committer | friendica <info@friendica.com> | 2015-03-04 18:55:17 -0800 |
commit | 76eb0a7e5606d61153b199094482c4c55685a035 (patch) | |
tree | a0d73443575237dcaa1358bf32d57e98d046c842 /include/photos.php | |
parent | ad3b4da3ff5751a5e0da6ba7e46a4fc8731d4d28 (diff) | |
download | volse-hubzilla-76eb0a7e5606d61153b199094482c4c55685a035.tar.gz volse-hubzilla-76eb0a7e5606d61153b199094482c4c55685a035.tar.bz2 volse-hubzilla-76eb0a7e5606d61153b199094482c4c55685a035.zip |
Deprecate the "wall uploads" photo album. Photo uploads (from any source) with no album specified will go now into an album based on YYYY-MM.
Diffstat (limited to 'include/photos.php')
-rw-r--r-- | include/photos.php | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/include/photos.php b/include/photos.php index 794ff7748..cd753ffea 100644 --- a/include/photos.php +++ b/include/photos.php @@ -31,7 +31,7 @@ function photo_upload($channel, $observer, $args) { if($newalbum) $album = $newalbum; else - $album = datetime_convert('UTC',date_default_timezone_get(),'now', 'Y'); + $album = datetime_convert('UTC',date_default_timezone_get(),'now', 'Y-m'); } /** |