equal
deleted
inserted
replaced
20 /** |
20 /** |
21 * Holds the theme slug in the Theme Directory. |
21 * Holds the theme slug in the Theme Directory. |
22 * |
22 * |
23 * @since 2.8.0 |
23 * @since 2.8.0 |
24 * |
24 * |
25 * @var object |
25 * @var string |
26 */ |
26 */ |
27 public $theme = ''; |
27 public $theme = ''; |
28 |
28 |
29 /** |
29 /** |
30 * Constructor. |
30 * Constructor. |
122 } |
122 } |
123 |
123 |
124 $update_actions['themes_page'] = sprintf( |
124 $update_actions['themes_page'] = sprintf( |
125 '<a href="%s" target="_parent">%s</a>', |
125 '<a href="%s" target="_parent">%s</a>', |
126 self_admin_url( 'themes.php' ), |
126 self_admin_url( 'themes.php' ), |
127 __( 'Return to Themes page' ) |
127 __( 'Go to Themes page' ) |
128 ); |
128 ); |
129 |
129 |
130 /** |
130 /** |
131 * Filters the list of action links available following a single theme update. |
131 * Filters the list of action links available following a single theme update. |
132 * |
132 * |