Skip to content

Commit

Permalink
MDL-5598 - Custom feed titles on RSS block did not allow spaces or other
Browse files Browse the repository at this point in the history
useful characters ;)

merged from MOODLE_19_STABLE
  • Loading branch information
poltawski committed Dec 28, 2007
1 parent c1aa6ad commit 82cb9cf
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion blocks/rss_client/block_rss_client_action.php
Expand Up @@ -47,7 +47,7 @@
$rssid = optional_param('rssid', NULL, PARAM_INT);
$id = optional_param('id', SITEID, PARAM_INT);
//$url = clean_param($url, PARAM_URL);
$preferredtitle = optional_param('preferredtitle', '', PARAM_ALPHA);
$preferredtitle = optional_param('preferredtitle', '', PARAM_TEXT);
$shared = optional_param('shared', 0, PARAM_INT);


Expand Down

0 comments on commit 82cb9cf

Please sign in to comment.