Welcome to mirror list, hosted at ThFree Co, Russian Federation.

github.com/HuasoFoundries/phpPgAdmin6.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
Diffstat (limited to 'src/controllers/TriggersController.php')
-rw-r--r--src/controllers/TriggersController.php6
1 files changed, 3 insertions, 3 deletions
diff --git a/src/controllers/TriggersController.php b/src/controllers/TriggersController.php
index 70373008..1d32f48d 100644
--- a/src/controllers/TriggersController.php
+++ b/src/controllers/TriggersController.php
@@ -279,7 +279,7 @@ class TriggersController extends BaseController
$triggerdata = $data->getTrigger($_REQUEST['table'], $_REQUEST['trigger']);
- if (0 < $triggerdata->recordCount()) {
+ if (0 < $triggerdata->RecordCount()) {
$this->coalesceArr($_POST, 'name', $triggerdata->fields['tgname']);
echo '<form action="' . \containerInstance()->subFolder . '/src/views/triggers" method="post">' . \PHP_EOL;
@@ -485,7 +485,7 @@ class TriggersController extends BaseController
// Get all the functions that can be used in triggers
$funcs = $data->getTriggerFunctions();
- if (0 === $funcs->recordCount()) {
+ if (0 === $funcs->RecordCount()) {
$this->doDefault($this->lang['strnofunctions']);
return;
@@ -496,7 +496,7 @@ class TriggersController extends BaseController
while (!$funcs->EOF) {
$sel0->add(new XHtmlOption($funcs->fields['proname']));
- $funcs->moveNext();
+ $funcs->MoveNext();
}
// Populate times