From 53d68d819d0db8b1b6cff55931ebf6a86294cedb Mon Sep 17 00:00:00 2001
From: Chris Hallberg <crhallberg@gmail.com>
Date: Mon, 10 Sep 2012 12:44:37 -0400
Subject: [PATCH] Missing template.

---
 .../blueprint/templates/upgrade/showsql.phtml | 24 +++++++++++++++++++
 1 file changed, 24 insertions(+)
 create mode 100644 themes/blueprint/templates/upgrade/showsql.phtml

diff --git a/themes/blueprint/templates/upgrade/showsql.phtml b/themes/blueprint/templates/upgrade/showsql.phtml
new file mode 100644
index 00000000000..7aba031e15a
--- /dev/null
+++ b/themes/blueprint/templates/upgrade/showsql.phtml
@@ -0,0 +1,24 @@
+<?
+    // Set page title.
+    $this->headTitle($this->translate('Upgrade VuFind'));
+
+    // Set up breadcrumbs:
+    $this->layout()->breadcrumbs = '<em>' . $this->transEsc('Upgrade VuFind') . '</em>';
+?>
+<style>
+    pre {
+        padding:8px;
+        margin:1em 2em;
+        background:#EEE;
+        border:1px dashed #CCC;
+    }
+</style>
+<h1><?=$this->transEsc('Upgrade VuFind')?></h1>
+<?=$this->flashmessages()?>
+<p>Save this SQL somewhere safe:</p>
+
+<pre><?=trim($this->sql) ?></pre>
+
+<form method="POST" action="<?=$this->url('upgrade-showsql')?>">
+    <input type="submit" name="continue" value="Next">
+</form>
\ No newline at end of file
-- 
GitLab