A discussion stemmed off of this issue that brought attention that there isn't a standard way of displaying a message during a system update.
Some instances use:
drupal_set_message(t('My message'));
... While others use:
$ret[] = array('success' => TRUE, 'query' => $message);
This should be standardized into one format and documentation should be written for which method is preferred.
Comments
Comment #1
dpearcefl commentedIs this still a problem in current D6?
Comment #2
dpearcefl commentedComment #3
robloachNot even sure if this is still an issue.
Comment #4
jhedstromThis is not currently an issue in
system.install. All update hooks are returning a message instead of usingdrupal_set_message().