From adab6b20c0ccd69ce1b2f4737f5c46ea0f2a6fc4 Mon Sep 17 00:00:00 2001 From: Dan Cryer Date: Tue, 8 Oct 2013 12:41:12 +0100 Subject: [PATCH] Fixing build status image. --- PHPCI/Controller/BuildStatusController.php | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/PHPCI/Controller/BuildStatusController.php b/PHPCI/Controller/BuildStatusController.php index 2a0f5c36..80c3e03a 100644 --- a/PHPCI/Controller/BuildStatusController.php +++ b/PHPCI/Controller/BuildStatusController.php @@ -45,6 +45,6 @@ class BuildStatusController extends \PHPCI\Controller } header('Content-Type: image/png'); - die(file_get_contents(APPLICATION_PATH . 'assets/img/build-' . $status . '.png')); + die(file_get_contents(APPLICATION_PATH . 'public/assets/img/build-' . $status . '.png')); } }