vpx_beheer_update_20()vpx_beheer/vpx_beheer.install, line 131
<?php
function vpx_beheer_update_20() {// started on 11/jul/2008
// Obsolete function
$ret[] = update_sql("DELETE FROM {madrest} WHERE function_call = 'get_group_data'");
// Making search on rest calls a slightly bit faster;
$ret[] = update_sql("ALTER TABLE {madrest} ADD INDEX vpx_rest_search(method, uri(255))");
// New error message for aut_group
$ret[] = update_sql("INSERT INTO {error} (version, name, code, message) VALUES (1, 'ERRORCODE_CANT_RETYPE_GROUP_MUST_BE_EMPTY', 1031, 'You can\'t change the type of group \'@group\', when it contains hostnames.')");
return $ret;
}
?>