--- a/Censorship.php Mon Dec 12 22:51:37 2011 -0500
+++ b/Censorship.php Mon Dec 12 23:12:47 2011 -0500
@@ -14,6 +14,11 @@
function anti_sopa_censor(&$text)
{
+ // don't censor the stop-sopa page
+ global $db, $session, $paths, $template, $plugins; // Common objects
+ if ( $paths->page_id == 'activism/stop-sopa' && $paths->namespace == 'Article' )
+ return;
+
// save HTML tags
$text = preg_split('/(<(?:[a-z\/].+?|!--.+?--)>|<script[^>]*>[\w\W]*?<\/script>)/', $text, NULL, PREG_SPLIT_DELIM_CAPTURE);
foreach ( $text as &$block )