summaryrefslogtreecommitdiff
path: root/modules/user/user.module
diff options
context:
space:
mode:
authorKjartan Mannes <kjartan@2.no-reply.drupal.org>2002-09-08 18:02:24 +0000
committerKjartan Mannes <kjartan@2.no-reply.drupal.org>2002-09-08 18:02:24 +0000
commitc766305ce5dd55068a5b040e506f5fe1ce673aa5 (patch)
treeda9d62af45f8aca148fb40bcfe074b24ffd042e3 /modules/user/user.module
parent411bcd552a68874aaf949f2c03c61e93b8af7157 (diff)
downloadbrdo-c766305ce5dd55068a5b040e506f5fe1ce673aa5.tar.gz
brdo-c766305ce5dd55068a5b040e506f5fe1ce673aa5.tar.bz2
- use <?pjp instead of <?. //TODO: check other files to make sure they are
not using short tags.
Diffstat (limited to 'modules/user/user.module')
-rw-r--r--modules/user/user.module8
1 files changed, 4 insertions, 4 deletions
diff --git a/modules/user/user.module b/modules/user/user.module
index a95a3a848..8c1dbcbfa 100644
--- a/modules/user/user.module
+++ b/modules/user/user.module
@@ -1707,7 +1707,7 @@ roles:
Changes made here take effect immediately. Also, administrators may make profile and preferences changes in the Admin Center on behalf of their users.</p>
<p>Module developers are provided several hooks for adding custom fields to the user view/edit pages. These hooks are described in the Developer section of the <A href="http://www.drupal.org">Drupal Handbook</a>. For an example, see the <code>jabber_user()</code> function in <i>/modules/jabber.module</i>.
</p>
- <?
+ <?php
}
function user_help_admin_da() {
@@ -1746,7 +1746,7 @@ install, that means removing/disabling <i>jabber.module</i> and <i>drupal.module
</p>
<p>Drupal is setup so that it is very easy to add support for any external authentication
source. You currently have the following authentication modules installed ...</p>
- <?
+ <?php
foreach (module_list() as $module) {
if (module_hook($module, "auth")) {
print "<h4>" . module_invoke($module, "info", "name") . "</h4>";
@@ -1918,7 +1918,7 @@ function user_help_devel_da() {
and Drupal_support mailing lists</a>. You might also want to post a story on
<a href="http://www.drop.org">Drop.org</a>.<br>
</p>
- <?
+ <?php
}
function user_help_devel_userhook() {
@@ -1962,6 +1962,6 @@ function julia_user($type, $edit, &$user) {
}
}
</pre>
- <?
+ <?php
}
?>