~ubuntu-branches/debian/jessie/wordpress/jessie

« back to all changes in this revision

Viewing changes to wp-admin/my-sites.php

  • Committer: Package Import Robot
  • Author(s): Craig Small
  • Date: 2014-04-17 20:56:19 UTC
  • mfrom: (1.2.35)
  • Revision ID: package-import@ubuntu.com-20140417205619-nurbet6eho4yvwfv
Tags: 3.9+dfsg-1
* New upstream release
* 3.9 seems to handle different locations for plugins so the
  plugin directory handling patches have been cut back.

Show diffs side-by-side

added added

removed removed

Lines of Context:
46
46
get_current_screen()->set_help_sidebar(
47
47
        '<p><strong>' . __('For more information:') . '</strong></p>' .
48
48
        '<p>' . __('<a href="http://codex.wordpress.org/Dashboard_My_Sites_Screen" target="_blank">Documentation on My Sites</a>') . '</p>' .
49
 
        '<p>' . __('<a href="http://wordpress.org/support/" target="_blank">Support Forums</a>') . '</p>'
 
49
        '<p>' . __('<a href="https://wordpress.org/support/" target="_blank">Support Forums</a>') . '</p>'
50
50
);
51
51
 
52
52
require_once( ABSPATH . 'wp-admin/admin-header.php' );
91
91
         */
92
92
        $settings_html = apply_filters( 'myblogs_options', '', 'global' );
93
93
        if ( $settings_html != '' ) {
94
 
                echo '<tr><td valign="top"><h3>' . __( 'Global Settings' ) . '</h3></td><td>';
 
94
                echo '<tr><td><h3>' . __( 'Global Settings' ) . '</h3></td><td>';
95
95
                echo $settings_html;
96
96
                echo '</td></tr>';
97
97
        }
116
116
                $i = 0;
117
117
                foreach ( $row as $user_blog ) {
118
118
                        $s = $i == 3 ? '' : 'border-right: 1px solid #ccc;';
119
 
                        echo "<td valign='top' style='$s'>";
 
119
                        echo "<td style='$s'>";
120
120
                        echo "<h3>{$user_blog->blogname}</h3>";
121
121
                        /**
122
122
                         * Filter the row links displayed for each site on the My Sites screen.