Welcome to mirror list, hosted at ThFree Co, Russian Federation.

github.com/matomo-org/matomo.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorrobocoder <anthon.pang@gmail.com>2010-11-25 09:29:54 +0300
committerrobocoder <anthon.pang@gmail.com>2010-11-25 09:29:54 +0300
commit28ff72b57aa9883a0151aacb9df356bc780803ef (patch)
tree209878bd1f6a5966a30193f0dcafca40633f1bab /plugins/Proxy
parent9ab8b866aa279ef199c041c04e0fac29339f948e (diff)
refs #1014 - rename methods
git-svn-id: http://dev.piwik.org/svn/trunk@3350 59fd770c-687e-43c8-a1e3-f5a4ff64c105
Diffstat (limited to 'plugins/Proxy')
-rw-r--r--plugins/Proxy/Controller.php8
1 files changed, 4 insertions, 4 deletions
diff --git a/plugins/Proxy/Controller.php b/plugins/Proxy/Controller.php
index c1ec6aad8e..709538c83d 100644
--- a/plugins/Proxy/Controller.php
+++ b/plugins/Proxy/Controller.php
@@ -24,7 +24,7 @@ class Piwik_Proxy_Controller extends Piwik_Controller
*
* @param string $imageData Base-64 encoded image data (via $_POST)
*/
- static public function outputImageBase64()
+ static public function exportImageWindow()
{
Piwik::checkUserHasSomeViewAccess();
@@ -35,7 +35,7 @@ class Piwik_Proxy_Controller extends Piwik_Controller
function exportImage()
{
- self::outputImageBase64();
+ self::exportImageWindow();
}
/**
@@ -43,7 +43,7 @@ class Piwik_Proxy_Controller extends Piwik_Controller
*
* @param string $imageData Base-64 encoded image data (via $_POST)
*/
- static public function outputImageBinary()
+ static public function outputBinaryImage()
{
Piwik::checkUserHasSomeViewAccess();
@@ -70,7 +70,7 @@ class Piwik_Proxy_Controller extends Piwik_Controller
function outputImage()
{
- self::outputImageBinary();
+ self::outputBinaryImage();
}
/**