From fe22354321abab3cff513ac5102b62aa8b0072ad Mon Sep 17 00:00:00 2001
From: Jared Hancock <jared@osticket.com>
Date: Fri, 9 Aug 2013 19:10:27 +0000
Subject: [PATCH] Fix regression in Upgrader::getErrors

Introduced with the multi-stream upgrader
---
 include/class.upgrader.php | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/include/class.upgrader.php b/include/class.upgrader.php
index dcaa96641..b599e59af 100644
--- a/include/class.upgrader.php
+++ b/include/class.upgrader.php
@@ -114,7 +114,7 @@ class Upgrader {
 
     function getErrors() {
         if ($this->getCurrentStream())
-            return $this->getCurrentStream()->getError();
+            return $this->getCurrentStream()->getErrors();
     }
 
     function getNextAction() {
-- 
GitLab