correct placeholders in sql file for manual setup
correct version info in VERSION and index.php
+
+
+$ git checkout-index -a -f --prefix=/absolute/path/to/new/dir/
+# remove some unwanted files if needed from the export
+$ cd /absolute/path/to/new/
+$ tar -cvJf archive.xz /absolute/path/to/new/dir/
+$ md5sum archive.xz > archive.xz.md5sum
+$ sha1sum archive.xz > archive.xz.sha1sum
# Replace #REPLACEME# with your table prefix. Default is bib
ALTER TABLE `#REPLACEME#_collection` ADD `defaultSortOrder` VARCHAR(4) NOT NULL AFTER `defaultSortField`;
ALTER TABLE `#REPLACEME#_menu` ADD `contextaction` VARCHAR(64) NOT NULL AFTER `action`;
-UPDATE `#REPLACEME#_menu` SET `contextaction` = 'collection' WHERE `bib_menu`.`id` = 4;
-UPDATE `#REPLACEME#_menu` SET `contextaction` = 'collection' WHERE `bib_menu`.`id` = 6;
+UPDATE `#REPLACEME#_menu` SET `contextaction` = 'collection' WHERE `#REPLACEME#_menu`.`id` = 4;
+UPDATE `#REPLACEME#_menu` SET `contextaction` = 'collection' WHERE `#REPLACEME#_menu`.`id` = 6;