summaryrefslogtreecommitdiff
path: root/includes
diff options
context:
space:
mode:
authorDries Buytaert <dries@buytaert.net>2007-11-09 07:40:55 +0000
committerDries Buytaert <dries@buytaert.net>2007-11-09 07:40:55 +0000
commitc187cc95b6b59491cbaed734b3838fec75557517 (patch)
treef6de37b34806f26a1d1bb6ad55313bb6e343ec53 /includes
parent0a87a8f5776db2cb704676829a542617a2843e32 (diff)
downloadbrdo-c187cc95b6b59491cbaed734b3838fec75557517.tar.gz
brdo-c187cc95b6b59491cbaed734b3838fec75557517.tar.bz2
- Patch #168829 by Neil Drumm: fixed link in documentation.
Diffstat (limited to 'includes')
-rw-r--r--includes/form.inc6
1 files changed, 4 insertions, 2 deletions
diff --git a/includes/form.inc b/includes/form.inc
index e6509c18e..783f6b603 100644
--- a/includes/form.inc
+++ b/includes/form.inc
@@ -13,16 +13,18 @@
* The drupal_get_form() function handles retrieving, processing, and
* displaying a rendered HTML form for modules automatically. For example:
*
+ * @code
* // Display the user registration form.
* $output = drupal_get_form('user_register');
+ * @endcode
*
* Forms can also be built and submitted programmatically without any user input
* using the drupal_execute() function.
*
* For information on the format of the structured arrays used to define forms,
* and more detailed explanations of the Form API workflow, see the
- * @link http://api.drupal.org/api/HEAD/file/developer/topics/forms_api_reference.html reference @endlink
- * and the @link http://api.drupal.org/api/HEAD/file/developer/topics/forms_api.html quickstart guide. @endlink
+ * @link http://api.drupal.org/api/file/developer/topics/forms_api_reference.html reference @endlink
+ * and the @link http://api.drupal.org/api/file/developer/topics/forms_api.html quickstart guide. @endlink
*/
/**