Skip to content
Snippets Groups Projects
Commit 3f0109fd authored by Dyszczo's avatar Dyszczo
Browse files

Merge branch 'feature/settings-default' into 'master'

Settings should open in default target #dyszczo-65

See merge request !27
parents 707313bf 5c06d70c
No related branches found
Tags 1.4.2
1 merge request!27Settings should open in default target #dyszczo-65
Pipeline #8877 failed with stages
in 2 minutes and 36 seconds
## [1.4.2] - 2020-05-15
### Changed
- Settings should open in default target
## [1.4.1] - 2019-11-19 ## [1.4.1] - 2019-11-19
### Fixed ### Fixed
- Invalid return type in Hookable interface - Invalid return type in Hookable interface
......
...@@ -211,7 +211,7 @@ abstract class AbstractPlugin extends SlimPlugin { ...@@ -211,7 +211,7 @@ abstract class AbstractPlugin extends SlimPlugin {
if ( $this->settings_url ) { if ( $this->settings_url ) {
$plugin_links = [ $plugin_links = [
'<a target="_blank" href="' . $this->settings_url . '">' . __( 'Settings', $this->get_text_domain() ) . '</a>', '<a href="' . $this->settings_url . '">' . __( 'Settings', $this->get_text_domain() ) . '</a>',
]; ];
$links = array_merge( $plugin_links, $links ); $links = array_merge( $plugin_links, $links );
} }
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment