summaryrefslogtreecommitdiff
path: root/templates
diff options
context:
space:
mode:
authorLester Caine <lester@lsces.co.uk>2026-05-22 13:32:59 +0100
committerLester Caine <lester@lsces.co.uk>2026-05-22 13:32:59 +0100
commit0186c01d4ddbcbf91631b1f300ab9021c52141f7 (patch)
tree88721334ffcbf83ce62dbf52235b4359772689bc /templates
parent6307cd31602101a2c6416244f2f7703be920f1df (diff)
downloadinstall-0186c01d4ddbcbf91631b1f300ab9021c52141f7.tar.gz
install-0186c01d4ddbcbf91631b1f300ab9021c52141f7.tar.bz2
install-0186c01d4ddbcbf91631b1f300ab9021c52141f7.zip
Fix integrity check page: working 'try to add table' and 'show table details'
Reuse existing DB connection (mDb->mDb) instead of opening a redundant new ADOdb connection that fails silently on Firebird PDO. Also fix JS namespace backslash in toggleElementDisplay call that broke the show-table-details link. Co-Authored-By: Claude Sonnet 4.6 <noreply@anthropic.com>
Diffstat (limited to 'templates')
-rwxr-xr-xtemplates/install_cleanup.tpl2
1 files changed, 1 insertions, 1 deletions
diff --git a/templates/install_cleanup.tpl b/templates/install_cleanup.tpl
index 30aa167..6fa1093 100755
--- a/templates/install_cleanup.tpl
+++ b/templates/install_cleanup.tpl
@@ -25,7 +25,7 @@
<ul>
{foreach from=$package.tables item=table}
<li>
- <a style="float:right" href="#" onclick="\Bitweaver\BitBase.toggleElementDisplay('{$table.name}','block');return false">show table details</a> {$table.name}<br />
+ <a style="float:right" href="#" onclick="BitBase.toggleElementDisplay('{$table.name}','block');return false">show table details</a> {$table.name}<br />
<div id="{$table.name}" style="display:none;">
<code>{$table.sql|nl2br}</code>
</div>