diff options
author | rvelices <rv-github@modusoptimus.com> | 2010-03-18 14:30:04 +0000 |
---|---|---|
committer | rvelices <rv-github@modusoptimus.com> | 2010-03-18 14:30:04 +0000 |
commit | 15fdea6925f005d057e748707a07bc571685d6e2 (patch) | |
tree | fc8e813dffbda341015bfc85c5ef6a3331eb75a2 /admin | |
parent | 7d7f20e80455b661ff436d44bbb1ae61bba92ec6 (diff) |
- removed compatibility with php4 (file_put_contents exists in php5)
- when synchronizing local files , sort them alphabetically
git-svn-id: http://piwigo.org/svn/trunk@5176 68402e56-0260-453c-a942-63ccdbb3a9ee
Diffstat (limited to 'admin')
-rw-r--r-- | admin/site_reader_local.php | 5 |
1 files changed, 3 insertions, 2 deletions
diff --git a/admin/site_reader_local.php b/admin/site_reader_local.php index 3951185a1..4803dddbc 100644 --- a/admin/site_reader_local.php +++ b/admin/site_reader_local.php @@ -114,6 +114,7 @@ function get_elements($path) $tmp_fs = $this->get_elements($path.'/'.$subdir); $fs = array_merge($fs, $tmp_fs); } + ksort($fs); } //end if is_dir return $fs; } @@ -198,10 +199,10 @@ function get_element_metadata($file, $has_high = false) if ($has_high) { $high_file = dirname($file).'/pwg_high/'.basename($file); - + $data['high_filesize'] = floor(filesize($high_file)/1024); } - + if ($conf['use_exif']) { $data = array_merge($data, get_sync_exif_data($file) ); |