Skip to content
Snippets Groups Projects
Commit cce4e8cf authored by Erick Hitter's avatar Erick Hitter
Browse files

Merge pull request #2 from mjangda/patch-1

Set $multipage to 0 when viewing all
parents 5204f154 556e8d51
Branches
Tags
No related merge requests found
...@@ -179,7 +179,7 @@ class view_all_posts_pages { ...@@ -179,7 +179,7 @@ class view_all_posts_pages {
*/ */
public function action_the_post( $post ) { public function action_the_post( $post ) {
if ( $this->is_view_all() ) { if ( $this->is_view_all() ) {
global $pages, $more; global $pages, $more, $multipage;
$post->post_content = str_replace( "\n<!--nextpage-->\n", "\n\n", $post->post_content ); $post->post_content = str_replace( "\n<!--nextpage-->\n", "\n\n", $post->post_content );
$post->post_content = str_replace( "\n<!--nextpage-->", "\n", $post->post_content ); $post->post_content = str_replace( "\n<!--nextpage-->", "\n", $post->post_content );
...@@ -189,6 +189,7 @@ class view_all_posts_pages { ...@@ -189,6 +189,7 @@ class view_all_posts_pages {
$pages = array( $post->post_content ); $pages = array( $post->post_content );
$more = 1; $more = 1;
$multipage = 0;
} }
} }
...@@ -669,4 +670,4 @@ if ( ! function_exists( 'is_view_all' ) ) { ...@@ -669,4 +670,4 @@ if ( ! function_exists( 'is_view_all' ) ) {
return $vapp->is_view_all(); return $vapp->is_view_all();
} }
} }
?> ?>
\ No newline at end of file
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Please register or to comment