diff options
author | Morris Jobke <hey@morrisjobke.de> | 2016-01-22 11:18:42 +0100 |
---|---|---|
committer | Lukas Reschke <lukas@owncloud.com> | 2016-01-24 18:04:20 +0100 |
commit | 75e6734ef4374fb8d12cab9aaafcc7fc24ea9f0d (patch) | |
tree | 87a0dc613cdc081a9f3e8dd90d3fd7e613d1c000 /lib/public | |
parent | 82d38528159cdf725b209f1ba7f37498e6ab7820 (diff) | |
download | nextcloud-server-75e6734ef4374fb8d12cab9aaafcc7fc24ea9f0d.tar.gz nextcloud-server-75e6734ef4374fb8d12cab9aaafcc7fc24ea9f0d.zip |
Remove OC_Helper::imagePath and use the proper public interface
Diffstat (limited to 'lib/public')
-rw-r--r-- | lib/public/template.php | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/lib/public/template.php b/lib/public/template.php index 35b2c26b3a0..7e46745c9d8 100644 --- a/lib/public/template.php +++ b/lib/public/template.php @@ -45,7 +45,7 @@ namespace OCP; * @param string $image * @return string to the image * - * @see OC_Helper::imagePath + * @see \OCP\IURLGenerator::imagePath * @deprecated 8.0.0 Use \OCP\Template::image_path() instead */ function image_path( $app, $image ) { @@ -144,7 +144,7 @@ class Template extends \OC_Template { /** * Make OC_Helper::imagePath available as a simple function * - * @see OC_Helper::imagePath + * @see \OCP\IURLGenerator::imagePath * * @param string $app * @param string $image |