From 037b9b78aeb1729567091def1148d2233a5512f3 Mon Sep 17 00:00:00 2001 From: Loic d'Anterroches Date: Wed, 21 Jan 2009 19:25:49 +0100 Subject: [PATCH] Fixed issue 106, crash with the cache and subversion. --- src/IDF/Scm/Svn.php | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/IDF/Scm/Svn.php b/src/IDF/Scm/Svn.php index 9abf01b..ecdb073 100644 --- a/src/IDF/Scm/Svn.php +++ b/src/IDF/Scm/Svn.php @@ -171,7 +171,7 @@ class IDF_Scm_Svn if ($file['type'] == 'blob') { $file['size'] = (string) $entry->size; } - $file['author'] = $entry->commit->author; + $file['author'] = (string) $entry->commit->author; $file['perm'] = ''; $res[] = (object) $file; }