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

github.com/phpmyadmin/phpmyadmin.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorBarry Leslie <barry_leslie@users.sourceforge.net>2010-07-13 02:39:06 +0400
committerMarc Delisle <marc@infomarc.info>2010-07-22 19:23:37 +0400
commitf8653e58038e578569a49083e5470b6c278ac70a (patch)
tree2bb9a6c140b30a2b96b466c300a1427054137c8a /server_engines.php
parente65625ce1ed593e6f15545e61b97c1d1c88ad92a (diff)
Update blob streaming to match the current API and use the PBMS PHP extension.
Diffstat (limited to 'server_engines.php')
-rw-r--r--server_engines.php13
1 files changed, 12 insertions, 1 deletions
diff --git a/server_engines.php b/server_engines.php
index f9664ca02d..eab5e63ce9 100644
--- a/server_engines.php
+++ b/server_engines.php
@@ -80,7 +80,18 @@ if (empty($_REQUEST['engine'])
. '</tr>' . "\n";
$odd_row = !$odd_row;
}
- unset($odd_row, $engine, $details);
+ // Special case for PBMS daemon which is not listed as an engine
+ echo '<tr class="'
+ . ($odd_row ? 'odd' : 'even')
+ . '">' . "\n"
+ . ' <td><a href="./server_engines.php'
+ . PMA_generate_common_url(array('engine' => "PBMS")) . '">' . "\n"
+ . ' ' . "PBMS\n"
+ . ' </a></td>' . "\n"
+ . ' <td>' . htmlspecialchars("PrimeBase BLOB streaming daemon") . '</td>' . "\n"
+ . '</tr>' . "\n";
+
+ unset($odd_row, $engine, $details);
echo '</tbody>' . "\n"
. '</table>' . "\n";