diff options
author | Angie Byron <webchick@24967.no-reply.drupal.org> | 2009-01-29 14:37:40 +0000 |
---|---|---|
committer | Angie Byron <webchick@24967.no-reply.drupal.org> | 2009-01-29 14:37:40 +0000 |
commit | d2feb622348184e95c66c7c8896684b1bf966734 (patch) | |
tree | 27418e83fc1cc77ed91d0b0d41f66eff0252bde6 | |
parent | ad99dd761a7e11256200d959f10c9898befa8176 (diff) | |
download | brdo-d2feb622348184e95c66c7c8896684b1bf966734.tar.gz brdo-d2feb622348184e95c66c7c8896684b1bf966734.tar.bz2 |
#345157 follow-up by toddy: Fix @link syntax in PHPDoc.
-rw-r--r-- | modules/system/system.api.php | 12 |
1 files changed, 7 insertions, 5 deletions
diff --git a/modules/system/system.api.php b/modules/system/system.api.php index cd98c5081..9fc2457fb 100644 --- a/modules/system/system.api.php +++ b/modules/system/system.api.php @@ -1502,7 +1502,8 @@ function hook_query_TAG_alter(QueryAlterableInterface $query) { * function needs to be updated to reflect the current version of the database * schema. * - * See the Schema API documentation at http://drupal.org/node/146843 + * See the Schema API documentation at + * @link http://drupal.org/node/146843 http://drupal.org/node/146843 @endlink * for details on hook_schema, where a database tables are defined. * * Note that since this function is called from a full bootstrap, all functions @@ -1525,7 +1526,8 @@ function hook_install() { * * The database updates are numbered sequentially according to the version of Drupal you are compatible with. * - * Schema updates should adhere to the Schema API: @link http://drupal.org/node/150215 + * Schema updates should adhere to the Schema API: + * @link http://drupal.org/node/150215 http://drupal.org/node/150215 @endlink * * Database updates consist of 3 parts: * - 1 digit for Drupal core compatibility @@ -1554,9 +1556,9 @@ function hook_install() { * Never renumber update functions. * * Further information about releases and release numbers: - * - @link http://drupal.org/handbook/version-info - * - @link http://drupal.org/node/93999 (Overview of contributions branches and tags) - * - @link http://drupal.org/handbook/cvs/releases + * - @link http://drupal.org/handbook/version-info http://drupal.org/handbook/version-info @endlink + * - @link http://drupal.org/node/93999 http://drupal.org/node/93999 @endlink (Overview of contributions branches and tags) + * - @link http://drupal.org/handbook/cvs/releases http://drupal.org/handbook/cvs/releases @endlink * * Implementations of this hook should be placed in a mymodule.install file in * the same directory as mymodule.module. Drupal core's updates are implemented |