X-Git-Url: http://www.aleph1.co.uk/gitweb/?a=blobdiff_plain;ds=sidebyside;f=web%2Fcore%2Flib%2FDrupal%2FCore%2FExtension%2Fmodule.api.php;fp=web%2Fcore%2Flib%2FDrupal%2FCore%2FExtension%2Fmodule.api.php;h=45355cc3f6a2aa6df8eecee8a81c59944a8779b1;hb=af6d1fb995500ae68849458ee10d66abbdcfb252;hp=17627523644dda193c5ee4af4174ac74a8a0de1d;hpb=680c79a86e3ed402f263faeac92e89fb6d9edcc0;p=yaffs-website diff --git a/web/core/lib/Drupal/Core/Extension/module.api.php b/web/core/lib/Drupal/Core/Extension/module.api.php index 176275236..45355cc3f 100644 --- a/web/core/lib/Drupal/Core/Extension/module.api.php +++ b/web/core/lib/Drupal/Core/Extension/module.api.php @@ -676,9 +676,10 @@ function hook_update_N(&$sandbox) { * These updates are executed after all hook_update_N() implementations. At this * stage Drupal is already fully repaired so you can use any API as you wish. * - * NAME can be arbitrary machine names. In contrast to hook_update_N() the order - * of functions in the file is the only thing which ensures the execution order - * of those functions. + * NAME can be arbitrary machine names. In contrast to hook_update_N() the + * alphanumeric naming of functions in the file is the only thing which ensures + * the execution order of those functions. If update order is mandatory, + * you should add numerical prefix to NAME or make it completely numerical. * * Drupal also ensures to not execute the same hook_post_update_NAME() function * twice.