From 980fe4361af18a7ee746a87339fb6ca5c3337c93 Mon Sep 17 00:00:00 2001
From: Owen Leonard <oleonard@myacpl.org>
Date: Tue, 10 Apr 2012 15:43:48 -0400
Subject: [PATCH] Bug 2780 [FOLLOW-UP] Capitalize strings consistently
Content-Type: text/plain; charset="utf-8"

Changes to the case of some hidden input values prevented
the user from being able to save a new SQL report.
---
 .../en/modules/reports/guided_reports_start.tt     |   10 +++++-----
 1 files changed, 5 insertions(+), 5 deletions(-)

diff --git a/koha-tmpl/intranet-tmpl/prog/en/modules/reports/guided_reports_start.tt b/koha-tmpl/intranet-tmpl/prog/en/modules/reports/guided_reports_start.tt
index ba52f1c..f516f8a 100644
--- a/koha-tmpl/intranet-tmpl/prog/en/modules/reports/guided_reports_start.tt
+++ b/koha-tmpl/intranet-tmpl/prog/en/modules/reports/guided_reports_start.tt
@@ -117,7 +117,7 @@ canned reports and writing custom SQL reports.</p>
 <h3>Reports Dictionary</h3>
 <p>Use the reports dictionary to define custom criteria to use in your reports</p>
 <form action="/cgi-bin/koha/reports/dictionary.pl">
-<input type="hidden" name="phase" value="View dictionary"/>
+<input type="hidden" name="phase" value="View Dictionary"/>
 <input type="submit" name="submit" value="View dictionary"/>
 </form>
 [% END %]
@@ -475,8 +475,8 @@ canned reports and writing custom SQL reports.</p>
     <li><label for="reportname">Report name: </label><input type="text" id="reportname" name="reportname" /></li>
     <li><label for="notes">Notes:</label> <textarea name="notes" id="notes"></textarea></li>
 </ol></fieldset>
-<fieldset class="action"><input type="hidden" name="phase" value="Save report" />
-<input type="submit" name="submit" value="Save report" /></fieldset>
+<fieldset class="action"><input type="hidden" name="phase" value="Save Report" />
+<input type="submit" name="submit" value="Save Report" /></fieldset>
 </form>
 [% END %]
 
@@ -562,7 +562,7 @@ canned reports and writing custom SQL reports.</p>
 </div>
 </fieldset>
 
-<fieldset class="action"><input type="hidden" name="phase" value="Save report" />
+<fieldset class="action"><input type="hidden" name="phase" value="Save Report" />
 <input type="submit" name="submit" value="Save Report" /> <a href="/cgi-bin/koha/reports/guided_reports.pl?phase=Use%20saved" class="cancel">Cancel</a>
 </fieldset>
 </form>
@@ -582,7 +582,7 @@ Sub report:<select name="subreport">
 [% END %]
 </select>
 <br />
-<input type="hidden" name="phase" value="Save compound" />
+<input type="hidden" name="phase" value="Save Compound" />
 <input type="submit" name="submit" value="Save compound" />
 </form>
 [% END %]
-- 
1.7.5.4