Merge from STABLE:
Fixing a notice when $CFG->forum_trackreadposts doesn't exist (when editing the admin account during installation, for example).
This commit is contained in:
+1
-1
@@ -152,7 +152,7 @@ if (isadmin()) {
|
||||
choose_from_menu ($choices, "autosubscribe", $user->autosubscribe, "") ?>
|
||||
</td>
|
||||
</tr>
|
||||
<?php if ($CFG->forum_trackreadposts) { ?>
|
||||
<?php if (!empty($CFG->forum_trackreadposts)) { ?>
|
||||
<tr>
|
||||
<th><?php print_string("trackforums") ?>:</th>
|
||||
<td><?php
|
||||
|
||||
Reference in New Issue
Block a user