diff options
author | plegall <plg@piwigo.org> | 2011-01-04 10:55:08 +0000 |
---|---|---|
committer | plegall <plg@piwigo.org> | 2011-01-04 10:55:08 +0000 |
commit | b4d2a1362fa6dc15d8a1e849d5e36fe341953baf (patch) | |
tree | 3b3a6a2246e00ec50dfc5d57ced6bffaad8e9012 /include/ws_functions.inc.php | |
parent | 621ed0b391f81bb7d636d1e447154e1f5b43fb24 (diff) |
feature 2095 added: new column images.added_by (foreign key on users.id)
git-svn-id: http://piwigo.org/svn/trunk@8464 68402e56-0260-453c-a942-63ccdbb3a9ee
Diffstat (limited to '')
-rw-r--r-- | include/ws_functions.inc.php | 3 |
1 files changed, 2 insertions, 1 deletions
diff --git a/include/ws_functions.inc.php b/include/ws_functions.inc.php index ab4c342cc..56194f32a 100644 --- a/include/ws_functions.inc.php +++ b/include/ws_functions.inc.php @@ -1209,7 +1209,7 @@ SELECT function ws_images_add($params, &$service) { - global $conf; + global $conf, $user; if (!is_admin()) { return new PwgError(401, 'Access denied'); @@ -1284,6 +1284,7 @@ SELECT 'width' => $file_infos['width'], 'height' => $file_infos['height'], 'md5sum' => $params['original_sum'], + 'added_by' => $user['id'], ); $info_columns = array( |