From a25fe0c7e86da6c60b22b7785d27832f0bb18b2a Mon Sep 17 00:00:00 2001 From: mistic100 Date: Fri, 10 Feb 2012 14:44:20 +0000 Subject: feature 2567: in IMAGES_TABLE the field "name" is prefilled with the filename git-svn-id: http://piwigo.org/svn/trunk@13082 68402e56-0260-453c-a942-63ccdbb3a9ee --- install/db/117-database.php | 65 +++++++++++++++++++++++++++++++++++++++++++++ 1 file changed, 65 insertions(+) create mode 100644 install/db/117-database.php (limited to 'install') diff --git a/install/db/117-database.php b/install/db/117-database.php new file mode 100644 index 000000000..0551b44ae --- /dev/null +++ b/install/db/117-database.php @@ -0,0 +1,65 @@ + $row['id'], + 'name' => get_name_from_file($row['file']), + ); +} + +mass_updates( + IMAGES_TABLE, + array( + 'primary' => array('id'), + 'update' => array('name'), + ), + $updates + ); + + +echo +"\n" +.'"'.$upgrade_description.'"'.' ended' +."\n" +; + +?> -- cgit v1.2.3