Fix dbmanager when insert db activity in activity login info panel - #1194

This commit is contained in:
enriquecd 2017-08-21 11:29:58 +02:00
parent c1545fc802
commit a399652873
1 changed files with 2 additions and 2 deletions

View File

@ -167,7 +167,7 @@ function dbmgr_extension_main () {
echo '<strong>An error has occured when querying the database.</strong><br />'; echo '<strong>An error has occured when querying the database.</strong><br />';
echo $error; echo $error;
db_pandora_audit("Extension DB inface", "Error in SQL", false, false, $sql); db_pandora_audit("DB Interface Extension", "Error in SQL", false, false, $sql);
return; return;
} }
@ -175,7 +175,7 @@ function dbmgr_extension_main () {
if (! is_array ($result)) { if (! is_array ($result)) {
echo "<strong>Output: <strong>".$result; echo "<strong>Output: <strong>".$result;
db_pandora_audit("Extension DB inface", "SQL", false, false, $sql); db_pandora_audit("DB Interface Extension", "SQL", false, false, $sql);
return; return;
} }