diff options
author | Jesús Eduardo <heckyel@hyperbola.info> | 2017-08-10 20:43:33 -0500 |
---|---|---|
committer | Jesús Eduardo <heckyel@hyperbola.info> | 2017-08-10 20:43:33 -0500 |
commit | c6fa0d1cedbd59c84c328edfe0554a48591b02ac (patch) | |
tree | 0329eb615d904a3504c563259c488aafc73f9c57 | |
parent | ec1bd12fa3957139aa3e9ab9f4851ac332ef56d1 (diff) | |
download | librevideojs-html5-player-c6fa0d1cedbd59c84c328edfe0554a48591b02ac.tar.lz librevideojs-html5-player-c6fa0d1cedbd59c84c328edfe0554a48591b02ac.tar.xz librevideojs-html5-player-c6fa0d1cedbd59c84c328edfe0554a48591b02ac.zip |
fixed string
-rw-r--r-- | librevideojs-html5-player.php | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/librevideojs-html5-player.php b/librevideojs-html5-player.php index 2f41cc7..31922af 100644 --- a/librevideojs-html5-player.php +++ b/librevideojs-html5-player.php @@ -67,7 +67,7 @@ if (!class_exists('LIBREVIDEOJS_HTML5_PLAYER')){ function options_page(){ $url = "https://wordpress.org/plugins/librevideojs-html5-player"; - $link_text = printf(wp_kses(__('For detailed documentation please visit the plugin homepage <a target="_blank" href="%s">here</a>.', 'librevideojs-html5-player'), array('a' => array('href' => array(), 'target' => array()))), esc_url($url)); + $link_text = sprintf(wp_kses(__('For detailed documentation please visit the plugin homepage <a target="_blank" href="%s">here</a>.', 'librevideojs-html5-player'), array('a' => array('href' => array(), 'target' => array()))), esc_url($url)); printf( '<div class="wrap"><h2>LibreVideoJS HTML5 Player - v ' . $this->plugin_version . '</h2> <div class="update-nag">' . $link_text . '</div> |