Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Remove reference on link management and on help page #304

Merged
merged 4 commits into from Dec 17, 2018
Merged
Show file tree
Hide file tree
Changes from 3 commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Jump to
Jump to file
Failed to load files.
Diff view
Diff view
2 changes: 1 addition & 1 deletion src/wp-admin/edit-link-form.php
Expand Up @@ -108,7 +108,7 @@
<h2><label for="link_url"><?php _e( 'Web Address' ) ?></label></h2>
<div class="inside">
<input type="text" name="link_url" size="30" maxlength="255" class="code" value="<?php echo esc_attr($link->link_url); ?>" id="link_url" />
<p><?php _e('Example: <code>http://wordpress.org/</code> &#8212; don&#8217;t forget the <code>http://</code>'); ?></p>
<p><?php _e('Example: <code>https://www.classicpress.net</code> &#8212; don&#8217;t forget the <code>http://</code>'); ?></p>
</div>
</div>

Expand Down
2 changes: 1 addition & 1 deletion src/wp-admin/includes/class-wp-automatic-updater.php
Expand Up @@ -682,7 +682,7 @@ protected function send_email( $type, $core_update, $result = null ) {
} else {
// Add a note about the support forums.
$body .= "\n\n" . __( 'If you experience any issues or need support, the volunteers in the ClassicPress.net support forums may be able to help.' );
$body .= "\n" . __( 'https://wordpress.org/support/' );
$body .= "\n" . __( 'https://forums.classicpress.net/c/support' );
}

// Updates are important!
Expand Down
13 changes: 3 additions & 10 deletions src/wp-admin/index.php
Expand Up @@ -68,17 +68,10 @@
$help .= '<p>' . __( '<strong>Activity</strong> &mdash; Shows the upcoming scheduled posts, recently published posts, and the most recent comments on your posts and allows you to moderate them.' ) . '</p>';
if ( is_blog_admin() && current_user_can( 'edit_posts' ) )
$help .= '<p>' . __( "<strong>Quick Draft</strong> &mdash; Allows you to create a new post and save it as a draft. Also displays links to the 5 most recent draft posts you've started." ) . '</p>';
if ( ! is_multisite() && current_user_can( 'install_plugins' ) )
$help .= '<p>' . sprintf(
$help .= '<p>' . sprintf(
/* translators: %s: ClassicPress Planet URL */
__( '<strong>ClassicPress News</strong> &mdash; Latest news from the official ClassicPress project, the <a href="%s">ClassicPress Planet</a>, and popular plugins.' ),
__( 'https://planet.wordpress.org/' )
) . '</p>';
else
$help .= '<p>' . sprintf(
/* translators: %s: ClassicPress Planet URL */
__( '<strong>ClassicPress News</strong> &mdash; Latest news from the official ClassicPress project and the <a href="%s">ClassicPress Planet</a>.' ),
__( 'https://planet.wordpress.org/' )
__( '<strong>ClassicPress News</strong> &mdash; Latest news from the official <a href="%s">ClassicPress project</a></a>.' ),
__( 'https://www.classicpress.net/blog/' )
) . '</p>';
if ( current_user_can( 'edit_theme_options' ) )
$help .= '<p>' . __( '<strong>Welcome</strong> &mdash; Shows links for some of the most common tasks when setting up a new site.' ) . '</p>';
Expand Down