PluginProbe
Vimeography: Vimeo Video Gallery WordPress Plugin / 2.2
Vimeography: Vimeo Video Gallery WordPress Plugin v2.2
2.4.9 2.4.8 trunk 0.5.1 0.5.2 0.5.3 0.5.4 0.5.5 0.5.6 0.5.7 0.6 0.6.1 0.6.2 0.6.3 0.6.4 0.6.5 0.6.6 0.6.7 0.6.8 0.6.8.1 0.6.9 0.6.9.1 0.6.9.2 0.7 0.8 All 103 releases
← All changes | lib/core.php +2 -2 trunk2.2 View file →
@@ -197,9 +197,9 @@
197 197 {
198 198 if (!$this->_verify_vimeo_resource($this->_resource)) {
199 199 throw new \Vimeography_Exception(
200 200 sprintf(
201 - wp_kses_post(__('The "%s" resource is not valid.', 'vimeography')),
201 + __('The "%s" resource is not valid.', 'vimeography'),
202 202 $this->_resource
203 203 )
204 204 );
205 205 }
@@ -408,9 +408,9 @@
408 408 );
409 409 }
410 410 } catch (Exception $e) {
411 411 throw new \Vimeography_Exception(
412 - wp_kses_post(__('the request to Vimeo failed. ', 'vimeography') . $e->getMessage())
412 + __('the request to Vimeo failed. ', 'vimeography') . $e->getMessage()
413 413 );
414 414 }
415 415 }
416 416