diff options
author | thomascube <thomas@roundcube.net> | 2009-05-22 07:40:05 +0000 |
---|---|---|
committer | thomascube <thomas@roundcube.net> | 2009-05-22 07:40:05 +0000 |
commit | eb6f198a2d5c56e05340b041cd87ba0d9ef02fd1 (patch) | |
tree | 451a7a6591506b7a5d8352f86633e5a9f55f2048 /program/include/rcube_plugin_api.php | |
parent | 029c2fa60eec5927b694ce92ab2779ffd2998cc4 (diff) |
Rename function to correct english spelling
Diffstat (limited to 'program/include/rcube_plugin_api.php')
-rw-r--r-- | program/include/rcube_plugin_api.php | 6 |
1 files changed, 3 insertions, 3 deletions
diff --git a/program/include/rcube_plugin_api.php b/program/include/rcube_plugin_api.php index 588f35e39..c23b1e6f1 100644 --- a/program/include/rcube_plugin_api.php +++ b/program/include/rcube_plugin_api.php @@ -264,7 +264,7 @@ class rcube_plugin_api public function include_script($fn) { if ($this->output->type == 'html') { - $src = $this->ressource_url($fn); + $src = $this->resource_url($fn); $this->output->add_header(html::tag('script', array('type' => "text/javascript", 'src' => $src))); } } @@ -275,7 +275,7 @@ class rcube_plugin_api public function include_stylesheet($fn) { if ($this->output->type == 'html') { - $src = $this->ressource_url($fn); + $src = $this->resource_url($fn); $this->output->add_header(html::tag('link', array('rel' => "stylesheet", 'type' => "text/css", 'href' => $src))); } } @@ -300,7 +300,7 @@ class rcube_plugin_api /** * Make the given file name link into the plugins directory */ - private function ressource_url($fn) + private function resource_url($fn) { if ($fn[0] != '/' && !preg_match('|^https?://|i', $fn)) return $this->url . $fn; |