From f63b368789766a667388c2efa0cb19d869d92e0f Mon Sep 17 00:00:00 2001 From: Michael Joseph Date: Mon, 26 May 2003 13:55:03 +0000 Subject: [PATCH] corrected variable names --- lib/archiving/TimePeriod.inc | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/lib/archiving/TimePeriod.inc b/lib/archiving/TimePeriod.inc index 64f7c60..94c9f83 100644 --- a/lib/archiving/TimePeriod.inc +++ b/lib/archiving/TimePeriod.inc @@ -33,13 +33,13 @@ class TimePeriod { * @param date the time unit * @param integer the expiration time period id */ - function TimePeriod($dNewExpirationDate, $iNewTimePeriodID) { + function TimePeriod($iNewTimeUnitID, $iNewUnits) { global $default; // primary key not set as this is not stored yet $this->iId = -1; - $this->iTimeUnitID = $dNewExpirationDate; - $this->iUnits = $iNewTimePeriodID; + $this->iTimeUnitID = $iNewTimeUnitID; + $this->iUnits = $iNewUnits; } /** -- libgit2 0.21.4