function itweak_upload_update_6002 in iTweak Upload 6.2
Implementation of hook_update_N() iTweak Upload now needs to be earliest within all modules, so it can act upon file deletion and clear imagecache.
File
- ./
itweak_upload.install, line 102 - Installation code for iTweakUpload.
Code
function itweak_upload_update_6002() {
$ret = array();
$ret[] = update_sql("UPDATE {system} SET weight = -10 WHERE name = 'itweak_upload'");
return $ret;
}