[Phpmyadmin-git] [SCM] phpMyAdmin branch, master, updated. RELEASE_3_3_3-4479-g81dfcbe

Michal Čihař nijel at users.sourceforge.net
Mon May 31 13:59:50 CEST 2010


The branch, master has been updated
       via  81dfcbedc1ca53186cbea44246ced1d1e586bb3c (commit)
       via  0a16cd9d687884072bd73cff5765cfe51b48982f (commit)
      from  10cb2de1fefa20d321fdac38813f0ef172748aed (commit)


- Log -----------------------------------------------------------------
commit 81dfcbedc1ca53186cbea44246ced1d1e586bb3c
Author: Michal Čihař <mcihar at novell.com>
Date:   Mon May 31 13:46:03 2010 +0200

    Use standard way for showing documentation links.

commit 0a16cd9d687884072bd73cff5765cfe51b48982f
Author: Michal Čihař <mcihar at novell.com>
Date:   Mon May 31 13:43:54 2010 +0200

    Properly include page footer.

-----------------------------------------------------------------------

Summary of changes:
 pdf_pages.php |   12 ++++++------
 1 files changed, 6 insertions(+), 6 deletions(-)

diff --git a/pdf_pages.php b/pdf_pages.php
index dc9c64e..5ad7899 100644
--- a/pdf_pages.php
+++ b/pdf_pages.php
@@ -34,25 +34,25 @@ $query_default_option = PMA_DBI_QUERY_STORE;
  */
 if (!$cfgRelation['relwork']) {
     echo sprintf(__('<b>%s</b> table not found or not set in %s'), 'relation', 'config.inc.php') . '<br />' . "\n"
-         . '<a href="./Documentation.html#relation" target="documentation">' . __('Documentation') . '</a>' . "\n";
+         . PMA_showDocu('relation') . "\n";
     require_once './libraries/footer.inc.php';
 }
 
 if (!$cfgRelation['displaywork']) {
     echo sprintf(__('<b>%s</b> table not found or not set in %s'), 'table_info', 'config.inc.php') . '<br />' . "\n"
-         . '<a href="./Documentation.html#table_info" target="documentation">' . __('Documentation') . '</a>' . "\n";
+         . PMA_showDocu('table_info') . "\n";
     require_once './libraries/footer.inc.php';
 }
 
 if (!isset($cfgRelation['table_coords'])){
     echo sprintf(__('<b>%s</b> table not found or not set in %s'), 'table_coords', 'config.inc.php') . '<br />' . "\n"
-         . '<a href="./Documentation.html#table_coords" target="documentation">' . __('Documentation') . '</a>' . "\n";
-    exit();
+         . PMA_showDocu('table_coords') . "\n";
+    require_once './libraries/footer.inc.php';
 }
 if (!isset($cfgRelation['pdf_pages'])) {
     echo sprintf(__('<b>%s</b> table not found or not set in %s'), 'pdf_page', 'config.inc.php') . '<br />' . "\n"
-         . '<a href="./Documentation.html#pdf_pages" target="documentation">' . __('Documentation') . '</a>' . "\n";
-    exit();
+         . PMA_showDocu('pdf_pages') . "\n";
+    require_once './libraries/footer.inc.php';
 }
 
 if ($cfgRelation['pdfwork']) {


hooks/post-receive
-- 
phpMyAdmin




More information about the Git mailing list