From 3ee2ef37a84d405de9c31ae9a49f612f62d3b304 Mon Sep 17 00:00:00 2001
From: Olav Morken <olav.morken@uninett.no>
Date: Mon, 8 Sep 2008 13:39:38 +0000
Subject: [PATCH] Utilities: Fix typo in duration parser.

git-svn-id: https://simplesamlphp.googlecode.com/svn/trunk@862 44740490-163a-0410-bde0-09ae8108e29a
---
 lib/SimpleSAML/Utilities.php | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/lib/SimpleSAML/Utilities.php b/lib/SimpleSAML/Utilities.php
index 033f0f691..188ea4854 100644
--- a/lib/SimpleSAML/Utilities.php
+++ b/lib/SimpleSAML/Utilities.php
@@ -469,7 +469,7 @@ class SimpleSAML_Utilities {
 		$timestamp += $durDays * 24 * 60 * 60;
 		$timestamp += $durHours * 60 * 60;
 		$timestamp += $durMinutes * 60;
-		$timestamp += $durSecods;
+		$timestamp += $durSeconds;
 
 		return $timestamp;
 	}
-- 
GitLab