Skip to content

Commit

Permalink
Merge pull request #549 from x-team/issue-543
Browse files Browse the repository at this point in the history
Fixing error in Custom Background context key name
  • Loading branch information
lukecarbis committed May 23, 2014
2 parents 6ade8b7 + f5aa8d5 commit fc1142e
Showing 1 changed file with 11 additions and 12 deletions.
23 changes: 11 additions & 12 deletions connectors/settings.php
Original file line number Diff line number Diff line change
Expand Up @@ -65,7 +65,6 @@ class WP_Stream_Connector_Settings extends WP_Stream_Connector {
'admin_email',
);


/**
* Register all context hooks
*
Expand Down Expand Up @@ -113,17 +112,17 @@ public static function get_action_labels() {
*/
public static function get_context_labels() {
$context_labels = array(
'settings' => __( 'Settings', 'default' ),
'general' => __( 'General', 'default' ),
'writing' => __( 'Writing', 'default' ),
'reading' => __( 'Reading', 'default' ),
'discussion' => __( 'Discussion', 'default' ),
'media' => __( 'Media', 'default' ),
'permalink' => __( 'Permalinks', 'default' ),
'network' => __( 'Network', 'default' ),
'wp_stream' => __( 'Stream', 'stream' ),
'custom_background ' => __( 'Custom Background', 'default' ),
'custom_header' => __( 'Custom Header', 'default' ),
'settings' => __( 'Settings', 'default' ),
'general' => __( 'General', 'default' ),
'writing' => __( 'Writing', 'default' ),
'reading' => __( 'Reading', 'default' ),
'discussion' => __( 'Discussion', 'default' ),
'media' => __( 'Media', 'default' ),
'permalink' => __( 'Permalinks', 'default' ),
'network' => __( 'Network', 'default' ),
'wp_stream' => __( 'Stream', 'stream' ),
'custom_background' => __( 'Custom Background', 'default' ),
'custom_header' => __( 'Custom Header', 'default' ),
);

if ( is_network_admin() ) {
Expand Down

0 comments on commit fc1142e

Please sign in to comment.