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
path: root/core
diff options
context:
space:
mode:
authormattab <matthieu.aubry@gmail.com>2013-09-06 07:25:42 +0400
committermattab <matthieu.aubry@gmail.com>2013-09-06 07:25:42 +0400
commit6a9e2423fa588da3230148789ff20dcce5fc4e8d (patch)
tree78abd88e89d960fa60db6d1a7849b0aa352b78e5 /core
parent6ad8083c6ad550cb04d346149f7a684e3347bdbb (diff)
Fix typo function name
Diffstat (limited to 'core')
-rw-r--r--core/ArchiveProcessor.php6
1 files changed, 3 insertions, 3 deletions
diff --git a/core/ArchiveProcessor.php b/core/ArchiveProcessor.php
index 2be7f239fa..a9b689e468 100644
--- a/core/ArchiveProcessor.php
+++ b/core/ArchiveProcessor.php
@@ -215,7 +215,7 @@ abstract class ArchiveProcessor
*/
protected function loadExistingArchiveIdFromDb($requestedPlugin)
{
- $minDatetimeArchiveProcessedUTC = $this->getMinTimeArchivedProcessed();
+ $minDatetimeArchiveProcessedUTC = $this->getMinTimeArchiveProcessed();
$site = $this->getSite();
$period = $this->getPeriod();
$segment = $this->getSegment();
@@ -314,7 +314,7 @@ abstract class ArchiveProcessor
*
* @public for tests
*/
- public function getMinTimeArchivedProcessed()
+ public function getMinTimeArchiveProcessed()
{
$endDateTimestamp = self::determineIfArchivePermanent($this->getDateEnd());
$isArchiveTemporary = ($endDateTimestamp === false);
@@ -331,7 +331,7 @@ abstract class ArchiveProcessor
public function isArchiveTemporary()
{
if (is_null($this->temporaryArchive)) {
- throw new Exception("getMinTimeArchivedProcessed() should be called prior to isArchiveTemporary()");
+ throw new Exception("getMinTimeArchiveProcessed() should be called prior to isArchiveTemporary()");
}
return $this->temporaryArchive;
}