Make WordPress Core

Changeset 11285


Ignore:
Timestamp:
05/11/2009 11:42:46 PM (16 years ago)
Author:
ryan
Message:

Show theme install help text only if user has install_themes cap.

File:
1 edited

Legend:

Unmodified
Added
Removed
  • trunk/wp-admin/themes.php

    r11270 r11285  
    3030
    3131$help = '<p>' . __('Themes give your WordPress style. Once a theme is installed, you may preview it, activate it or deactivate it here.') . '</p>';
    32 $help .= '<p>' . sprintf(__('You can find additional themes for your site by using the new <a href="%1$s">Theme Browser/Installer</a> functionality or by browsing the <a href="http://wordpress.org/extend/themes/">WordPress Theme Directory</a> directly and installing manually.  To install a theme <em>manually</em>, <a href="%2$s">upload its ZIP archive with the new uploader</a> or copy its folder via FTP into your <code>wp-content/themes</code> directory.'), 'theme-install.php', 'theme-install.php?tab=upload' ) . '</p>';
    33 $help .= '<p>' . __('Once a theme is uploaded, you should see it on this page.') . '</p>' ;
     32if ( current_user_can('install_themes') ) {
     33    $help .= '<p>' . sprintf(__('You can find additional themes for your site by using the new <a href="%1$s">Theme Browser/Installer</a> functionality or by browsing the <a href="http://wordpress.org/extend/themes/">WordPress Theme Directory</a> directly and installing manually.  To install a theme <em>manually</em>, <a href="%2$s">upload its ZIP archive with the new uploader</a> or copy its folder via FTP into your <code>wp-content/themes</code> directory.'), 'theme-install.php', 'theme-install.php?tab=upload' ) . '</p>';
     34    $help .= '<p>' . __('Once a theme is uploaded, you should see it on this page.') . '</p>' ;
     35}
    3436
    3537add_contextual_help('themes', $help);
Note: See TracChangeset for help on using the changeset viewer.