summaryrefslogtreecommitdiff
path: root/modules/profile/profile.admin.inc
diff options
context:
space:
mode:
authorGábor Hojtsy <gabor@hojtsy.hu>2008-01-08 10:35:43 +0000
committerGábor Hojtsy <gabor@hojtsy.hu>2008-01-08 10:35:43 +0000
commitb78a990270fe41d582ae22b7f42df292428ec74b (patch)
tree9dcece10ab0e1a5c8e012ac7ccb5d4db71fec4ac /modules/profile/profile.admin.inc
parent0ab0b1d65f494dbef7f2152b789c721711000001 (diff)
downloadbrdo-b78a990270fe41d582ae22b7f42df292428ec74b.tar.gz
brdo-b78a990270fe41d582ae22b7f42df292428ec74b.tar.bz2
#207569 by ScoutBaker (minor code style): clean up @see usage in phpdoc blocks
Diffstat (limited to 'modules/profile/profile.admin.inc')
-rw-r--r--modules/profile/profile.admin.inc10
1 files changed, 5 insertions, 5 deletions
diff --git a/modules/profile/profile.admin.inc b/modules/profile/profile.admin.inc
index 84e3a774d..e4ceb53c0 100644
--- a/modules/profile/profile.admin.inc
+++ b/modules/profile/profile.admin.inc
@@ -10,7 +10,7 @@
* Form builder to display a listing of all editable profile fields.
*
* @ingroup forms
- * @see profile_admin_overview_submit().
+ * @see profile_admin_overview_submit()
*/
function profile_admin_overview() {
$result = db_query('SELECT title, name, type, category, fid, weight FROM {profile_fields} ORDER BY category, weight');
@@ -66,7 +66,7 @@ function profile_admin_overview() {
/**
* Submit hanlder to update changed profile field weights and categories.
*
- * @see profile_admin_overview().
+ * @see profile_admin_overview()
*/
function profile_admin_overview_submit($form, &$form_state) {
foreach (element_children($form_state['values']) as $fid) {
@@ -88,7 +88,7 @@ function profile_admin_overview_submit($form, &$form_state) {
* Theme the profile field overview into a drag and drop enabled table.
*
* @ingroup themeable
- * @see profile_admin_overview().
+ * @see profile_admin_overview()
*/
function theme_profile_admin_overview($form) {
drupal_add_css(drupal_get_path('module', 'profile') .'/profile.css');
@@ -161,8 +161,8 @@ function theme_profile_admin_overview($form) {
* Menu callback: Generate a form to add/edit a user profile field.
*
* @ingroup forms
- * @see profile_field_form_validate().
- * @see profile_field_form_submit().
+ * @see profile_field_form_validate()
+ * @see profile_field_form_submit()
*/
function profile_field_form(&$form_state, $arg = NULL) {
if (arg(3) == 'edit') {