diff -r a78b0798a116 -r 7e6537fd4730 plugins/SpecialPageFuncs.php --- a/plugins/SpecialPageFuncs.php Tue Nov 16 12:44:22 2010 -0500 +++ b/plugins/SpecialPageFuncs.php Tue Jul 12 22:13:37 2011 -0400 @@ -88,7 +88,7 @@ { $template->header(); - echo '

The page could not be created.

The name "'.$p.'" is invalid.

'; + echo '

The page could not be created.

The name "'.htmlspecialchars($p).'" is invalid.

'; $template->footer(); $db->close(); @@ -102,7 +102,7 @@ { $template->header(); - echo '

The page could not be created.

The name "'.$paths->nslist[$namespace].$p.'" is invalid.

'; + echo '

The page could not be created.

The name "'.$paths->nslist[$namespace].htmlspecialchars($p).'" is invalid.

'; $template->footer(); $db->close();