Skip to content
Snippets Groups Projects
Commit 617bd4bd authored by Demian Katz's avatar Demian Katz
Browse files

Adjusted wording; added missing escape; fixed some standards compliance issues...

Adjusted wording; added missing escape; fixed some standards compliance issues (uppercase POST, <style> inside <body>).
parent ef7d8898
No related merge requests found
......@@ -11,7 +11,7 @@
<p>To create a new database for VuFind, please fill in this form:</p>
<form method="POST">
<form method="post">
<table>
<tbody>
<tr><td>New database name: </td><td><input type="text" name="dbname" value="<?=$this->escapeHtml($this->dbname)?>"/></td></tr>
......
......@@ -20,7 +20,7 @@ an administrator) to associate with old anonymous tags.</p>
<br />
<form method="POST" action="<?=$this->url('upgrade-fixanonymoustags')?>">
<form method="post" action="<?=$this->url('upgrade-fixanonymoustags')?>">
<?=$this->transEsc('Username') ?>: <input type="text" name="username" /> <input type="submit" name="submit" value="<?=$this->transEsc('Submit') ?>" /><br /><br />
<input type="submit" name="skip" value="<?=$this->transEsc('skip_step') ?>." onclick="return confirm('<?=$this->transEsc('skip_confirm') ?>');"/>
</form>
\ No newline at end of file
......@@ -13,7 +13,7 @@ but it will improve the user experience by allowing proper sorting of favorites
<br />
<form method="POST" action="<?=$this->url('upgrade-fixmetadata')?>">
<form method="post" action="<?=$this->url('upgrade-fixmetadata')?>">
<input type="submit" name="submit" value="<?=$this->transEsc('fix_metadata') ?>." /><br /><br />
<input type="submit" name="skip" value="<?=$this->transEsc('skip_fix_metadata') ?>." onclick="return confirm('<?=$this->transEsc('skip_confirm') ?>');"/>
</form>
\ No newline at end of file
......@@ -11,7 +11,7 @@
<p>VuFind's database structure needs to be updated for the new version. Please enter a database username and password
with permission to alter and create tables.</p>
<form method="POST" action="<?=$this->url('upgrade-getdbcredentials')?>">
<form method="post" action="<?=$this->url('upgrade-getdbcredentials')?>">
<table>
<tbody>
<tr><td>MySQL Root User: </td><td><input type="text" name="dbrootuser" value="<?=$this->escapeHtml($this->dbrootuser)?>"/></td></tr>
......
......@@ -4,21 +4,20 @@
// Set up breadcrumbs:
$this->layout()->breadcrumbs = '<em>' . $this->transEsc('Upgrade VuFind') . '</em>';
// Set up styles:
$this->headstyle()->appendStyle(
"pre {\n"
. " padding:8px; margin:1em 2em; background:#EEE; border:1px dashed #CCC;\n"
. "}\n"
);
?>
<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>
<p>These SQL statements can be used to manually upgrade your database:</p>
<pre><?=trim($this->sql) ?></pre>
<pre><?=$this->escapeHtml(trim($this->sql))?></pre>
<form method="POST" action="<?=$this->url('upgrade-showsql')?>">
<input type="submit" name="continue" value="Next">
<form method="post" action="<?=$this->url('upgrade-showsql')?>">
<input type="submit" name="continue" value="Next" />
</form>
\ No newline at end of file
0% or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment