diff --git a/bootstrap.php b/bootstrap.php index 2a947eb..4a46fde 100755 --- a/bootstrap.php +++ b/bootstrap.php @@ -83,6 +83,7 @@ class visitors_edits{ require_once( ABSPATH . 'wp-admin/includes/upgrade.php' ); dbDelta( $sql ); + flush_rewrite_rules(true); } public function query_vars($query_vars){ $query_vars[] = 'visitors_edits_post_name'; @@ -94,7 +95,6 @@ class visitors_edits{ 'index.php?visitors_edits_post_name=$matches[1]', 'top' ); - flush_rewrite_rules(true); } public function parse_request($request){ if( isset( $request->query_vars['visitors_edits_post_name'] ) ): @@ -126,10 +126,10 @@ function visitors_editsDIFF($oldHtml,$newHtml){ require "vendor/autoload.php"; $htmlDiff = new HtmlDiff($oldHtml, $newHtml); $htmlDiff->getConfig()->setGroupDiffs(false); - + return $htmlDiff->build(); } function visitors_editsDOM(){ return new Dom; } -?> \ No newline at end of file +?>