bug #2963830: Import page not displaying due to fatal error

This commit is contained in:
Herman van Rink
2010-03-05 08:43:07 +00:00
parent 58d2c0a58c
commit 72b9d2abd5

View File

@@ -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 '<a href="Documentation.html#' . $anchor . '" target="documentation"><img class="icon" src="' . $GLOBALS['pmaThemeImage'] . 'b_help.png" width="11" height="11" alt="' . $GLOBALS['strDocu'] . '" title="' . $GLOBALS['strDocu'] . '" /></a>';
} else {
return '[<a href="Documentation.html#' . $anchor . '" target="documentation">' . $GLOBALS['strDocu'] . '</a>]';
}
} // end of the 'PMA_showDocu()' function
/**
* returns HTML for a footnote marker and add the messsage to the footnotes
*