mirror of
https://github.com/moodle/moodle.git
synced 2025-08-05 08:56:36 +02:00
Fixed warning
This commit is contained in:
parent
8b4e649a1e
commit
c39f126780
1 changed files with 2 additions and 1 deletions
|
@ -148,7 +148,8 @@
|
|||
</tr>
|
||||
<?php
|
||||
//Only show rss parameters if rss is activated at site and forum levels
|
||||
if ($CFG->enablerssfeeds && $CFG->forum_enablerssfeeds) {
|
||||
if ($CFG->enablerssfeeds
|
||||
&& isset($CFG->forum_enablerssfeeds) && $CFG->forum_enablerssfeeds) {
|
||||
echo '<tr valign="top">';
|
||||
echo '<td align="right"><b>'.get_string('rsstype').':</b></td>';
|
||||
echo '<td>';
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue