Skip to content

Commit

Permalink
Code cleanup. / If you have a non-paleolithic version of WordPress, t…
Browse files Browse the repository at this point in the history
…here is no need for fwp_do_meta_boxes, so remove remaining references and just go straight to do_meta_boxes.
  • Loading branch information
Rad Geek committed Oct 27, 2017
1 parent 40f628f commit 027a9f7
Show file tree
Hide file tree
Showing 4 changed files with 4 additions and 4 deletions.
2 changes: 1 addition & 1 deletion diagnostics-page.php
Expand Up @@ -61,7 +61,7 @@ function display () {
?>
<div class="metabox-holder">
<?php
fwp_do_meta_boxes($this->meta_box_context(), $this->meta_box_context(), $this);
do_meta_boxes($this->meta_box_context(), $this->meta_box_context(), $this);
?>
</div> <!-- class="metabox-holder" -->
</div> <!-- id="post-body" -->
Expand Down
2 changes: 1 addition & 1 deletion feedwordpressadminpage.class.php
Expand Up @@ -491,7 +491,7 @@ public function display () {
?>
<div class="metabox-holder">
<?php
fwp_do_meta_boxes($this->meta_box_context(), $this->meta_box_context(), $this);
do_meta_boxes($this->meta_box_context(), $this->meta_box_context(), $this);
?>
</div> <!-- class="metabox-holder" -->
</div> <!-- id="post-body" -->
Expand Down
2 changes: 1 addition & 1 deletion feedwordpresssyndicationpage.class.php
Expand Up @@ -439,7 +439,7 @@ function display () {
?>
<div class="metabox-holder">
<?php
fwp_do_meta_boxes($this->meta_box_context(), $this->meta_box_context(), $this);
do_meta_boxes($this->meta_box_context(), $this->meta_box_context(), $this);
?>
</div> <!-- class="metabox-holder" -->
</div> <!-- id="post-body" -->
Expand Down
2 changes: 1 addition & 1 deletion performance-page.php
Expand Up @@ -55,7 +55,7 @@ function display () {
?>
<div class="metabox-holder">
<?php
fwp_do_meta_boxes($this->meta_box_context(), $this->meta_box_context(), $this);
do_meta_boxes($this->meta_box_context(), $this->meta_box_context(), $this);
?>
</div> <!-- class="metabox-holder" -->
</div> <!-- id="post-body" -->
Expand Down

0 comments on commit 027a9f7

Please sign in to comment.