mirror of
https://github.com/moodle/moodle.git
synced 2025-08-06 01:16:44 +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>
|
</tr>
|
||||||
<?php
|
<?php
|
||||||
//Only show rss parameters if rss is activated at site and forum levels
|
//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 '<tr valign="top">';
|
||||||
echo '<td align="right"><b>'.get_string('rsstype').':</b></td>';
|
echo '<td align="right"><b>'.get_string('rsstype').':</b></td>';
|
||||||
echo '<td>';
|
echo '<td>';
|
||||||
|
|
Loading…
Add table
Add a link
Reference in a new issue