~canonical-sysadmins/wordpress/wp-plugin-feedwordpress

« back to all changes in this revision

Viewing changes to diagnostics-page.php

  • Committer: Paul Collins
  • Date: 2018-01-28 20:41:51 UTC
  • Revision ID: paul.collins@canonical.com-20180128204151-9rymk42tuo08tdvh
update from 2016.0420 to 2017.1018

Show diffs side-by-side

added added

removed removed

Lines of Context:
2
2
require_once(dirname(__FILE__) . '/admin-ui.php');
3
3
 
4
4
class FeedWordPressDiagnosticsPage extends FeedWordPressAdminPage {
5
 
        function FeedWordPressDiagnosticsPage () {
 
5
        public function __construct() {
6
6
                // Set meta-box context name
7
 
                FeedWordPressAdminPage::FeedWordPressAdminPage('feedwordpressdiagnosticspage');
 
7
                parent::__construct('feedwordpressdiagnosticspage');
8
8
                $this->dispatch = 'feedwordpress_diagnostics';
9
9
                $this->filename = __FILE__;
10
10