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:
authorThomas Steur <thomas.steur@googlemail.com>2014-07-18 14:46:40 +0400
committerThomas Steur <thomas.steur@googlemail.com>2014-07-18 14:46:40 +0400
commit3bc9845db06d41aede93847916b6e4861dd111eb (patch)
treea12819e26b2665d997f137967fe3b78e04a8bc28 /core/Updater.php
parentc43989c7c1242b08348a922702ff163b9fa09ea7 (diff)
refs #5820 improved generators and added a command to generate an update file. Added possibility to copy methods from one class into another including use statements and documentation, added possibility to directly make a translation and modify or create a language file during generation
Diffstat (limited to 'core/Updater.php')
-rw-r--r--core/Updater.php2
1 files changed, 1 insertions, 1 deletions
diff --git a/core/Updater.php b/core/Updater.php
index e10c6bf33c..6cd6bf757f 100644
--- a/core/Updater.php
+++ b/core/Updater.php
@@ -170,7 +170,7 @@ class Updater
return $queries;
}
- private function getUpdateClassName($componentName, $fileVersion)
+ public function getUpdateClassName($componentName, $fileVersion)
{
$suffix = strtolower(str_replace(array('-', '.'), '_', $fileVersion));
$className = 'Updates_' . $suffix;