diff --git a/libraries/common.lib.php b/libraries/common.lib.php
index 743f95642..5d1193c80 100644
--- a/libraries/common.lib.php
+++ b/libraries/common.lib.php
@@ -437,6 +437,24 @@ function PMA_showMySQLDocu($chapter, $link, $big_icon = false, $anchor = '')
}
} // end of the 'PMA_showMySQLDocu()' function
+
+/**
+ * Displays a link to the phpMyAdmin documentation
+ *
+ * @param string anchor in documentation
+ *
+ * @return string the html link
+ *
+ * @access public
+ */
+function PMA_showDocu($anchor) {
+ if ($GLOBALS['cfg']['ReplaceHelpImg']) {
+ return '
';
+ } else {
+ return '[' . $GLOBALS['strDocu'] . ']';
+ }
+} // end of the 'PMA_showDocu()' function
+
/**
* returns HTML for a footnote marker and add the messsage to the footnotes
*