Changeset - c428c707649b
[Not reviewed]
default
0 1 0
Ethan Zonca - 15 years ago 2011-01-31 20:03:43
ez@ethanzonca.com
Added htmlentities()
1 file changed with 2 insertions and 2 deletions:
0 comments (0 inline, 0 general)
admin.php
Show inline comments
 
@@ -70,13 +70,13 @@ require_once('inc/admin.inc');
 
	$result = 'Rehash Failed';
 
      else
 
	$result = 'Rehash Successful';
 
      $hashresult = nl2br(ob_get_contents());
 
      $hashresult = htmlentities(ob_get_contents());
 
      ob_end_clean();
 
      if ($crawl_schools !== NULL)
 
	$result .= ': ' . implode(', ', $crawl_schools);
 

	
 
      // Prepend rehash output
 
      $result = $hashresult . '<br />' . $result;
 
      $result = nl2br($hashresult) . '<br />' . $result;
 
    }
 
    else if(isset($_GET['purge']))
 
      {
0 comments (0 inline, 0 general)