diff --git a/GaudiPolicy/data/HTMLTestReportSkel/scripts.js b/GaudiPolicy/data/HTMLTestReportSkel/scripts.js
index 03e88d1aefd37708b7324945c2f9e89dfd5caa5d..5c340c69c20d466b763389c04f2093945892b5d4 100644
--- a/GaudiPolicy/data/HTMLTestReportSkel/scripts.js
+++ b/GaudiPolicy/data/HTMLTestReportSkel/scripts.js
@@ -307,7 +307,7 @@ function openlink2(){
 /// Code executed when the page is ready.
 $(function () {
 	$(".loading").loadingIcon().removeClass("loading");
-	var ignore_fields = ["qmtest.cause", "qmtest.target"];
+	var ignore_fields = ["qmtest.cause", "qmtest.target", "causes"];
 	var fields_order = ["start_time", "end_time"];
 
 	// Add details about the project (if available)
diff --git a/GaudiPolicy/doc/release.notes b/GaudiPolicy/doc/release.notes
index 19b1b143757bfa0152b9ba804e3f0790948a0679..fe12959caf6867a43806c1434c8c5c054703a345 100644
--- a/GaudiPolicy/doc/release.notes
+++ b/GaudiPolicy/doc/release.notes
@@ -3,6 +3,12 @@ package manager: Marco Clemencic
 Commit Id: $Format:%H$
 
 ============================= GaudiPolicy v15r4 ==============================
+! 2015-02-16 - Marco Clemencic
+ - Fixed generation of .new reference file for stderr.
+
+! 2015-02-13 - Marco Clemencic
+ - Fixed showing of test failure causes in the HTML report.
+
 ! 2015-02-13 - Marco Clemencic
  - Fixed some special cases in GaudiTesting.
 
diff --git a/GaudiPolicy/python/GaudiTesting/BaseTest.py b/GaudiPolicy/python/GaudiTesting/BaseTest.py
index 015b67516057567d268096f313592b424904e7f8..3fd93f110bdbc44996a99416b7fd273a9ba3c718 100644
--- a/GaudiPolicy/python/GaudiTesting/BaseTest.py
+++ b/GaudiPolicy/python/GaudiTesting/BaseTest.py
@@ -440,7 +440,7 @@ class BaseTest(object):
                                                preproc=preproc)(stderr, result)
             causes += newcauses
             if newcauses: # Write a new reference file for stdedd
-                newref = open(self.reference + ".new","w")
+                newref = open(lreference + ".new","w")
                 # sanitize newlines
                 for l in stderr.splitlines():
                     newref.write(l.rstrip() + '\n')
diff --git a/GaudiPolicy/scripts/CTestXML2HTML b/GaudiPolicy/scripts/CTestXML2HTML
index 9ba33e473a4385eaa91e142465fab2549fb66056..8059ed92950f954cee29f9543d5072e8b7fc3530 100755
--- a/GaudiPolicy/scripts/CTestXML2HTML
+++ b/GaudiPolicy/scripts/CTestXML2HTML
@@ -240,7 +240,7 @@ class TestOrganizer :
 
         for namedMeasurment in testElement.find("Results").getiterator("NamedMeasurement"):
             name = namedMeasurment.get("name")
-            if name == 'Cause':
+            if name == 'Causes':
                 cause = namedMeasurment.find("Value")
                 if cause is not None:
                     ET.SubElement(span2, "span", {"class": "cause"}).text = cause.text + " "
diff --git a/GaudiRelease/doc/release.notes.html b/GaudiRelease/doc/release.notes.html
index 20517b97eaeb8b5aa275e02eb6ad4ea7202271ab..c5f99d58a92f743366d8a3be47e782b1c4208925 100644
--- a/GaudiRelease/doc/release.notes.html
+++ b/GaudiRelease/doc/release.notes.html
@@ -55,7 +55,7 @@ Package Coordinator: Marco Clemencic, Charles Leggett<br>
 Purpose: Gaudi common set of packages<br><br>
 </pre>
 <!-- ====================================================================== -->
-<h2><a name="v26r1">Gaudi v26r1</a> (2015-02-12)</h2>
+<h2><a name="v26r1">Gaudi v26r1</a> (2015-02-16)</h2>
 <h3>Externals version: <a href="http://lcgsoft.cern.ch/index.py?page=cfg_overview&cfg=74root6">LCGCMT_74root6</a></h3>
 <h3>General Changes</h3>
 <ul>