vpx_beheer_update_81()Add missing error code.
vpx_beheer/vpx_beheer.install, line 1386
<?php
function vpx_beheer_update_81() {
$ret = array();
$ret[] = update_sql("INSERT INTO {error} (version, name, code, message) VALUES (1, 'ERRORCODE_IMAGE_FILE_TOO_BIG', 1404, 'The image file size is bigger, than the allowed maximum (@filesize byte).')");
$ret[] = update_sql("INSERT INTO {error} (version, name, code, message) VALUES (1, 'ERRORCODE_TRANSCODE_PROFILE_EXISTS', 1133, 'Transcode profile \\'@profile_name\\' already exists.')");
$ret[] = update_sql("INSERT INTO {error} (version, name, code, message) VALUES (1, 'ERRORCODE_TRANSCODE_PROFILE_NOT_FOUND', 1134, 'Transcode profile with ID \\'@profile_id\\' not found.')");
return $ret;
}
?>