PluginProbe
Super RSS Reader – Add attractive RSS Feed Widget / 0.8
Super RSS Reader – Add attractive RSS Feed Widget v0.8
trunk 0.8 2.0 2.1 2.2 2.3 2.4 2.5 2.6 2.7 2.8 3.0 3.1 3.2 4.0 4.0.1 4.1 4.2 4.3 4.4 4.4.1 4.5 4.6 4.7 4.8 All 33 releases
super-rss-reader / loadXML.php

loadXML.php in Super RSS Reader – Add attractive RSS Feed Widget 0.8, at loadXML.php

11 lines 313 B
No matching file
Up and down to move Enter to open Esc to close
Raw Download Zip
1 <?php
2 $rss = $_GET['rss'];
3 // make sure that some page is really being called
4 if ($rss && $rss != ""){
5 // make sure that an http call is being made - otherwise there's access to any file on machine...
6 if ((strpos($rss, "http://") === 0) || (strpos($rss, "https://") === 0)){
7 readfile($rss);
8 }
9 }
10
11 ?>