The branch, master has been updated via 85e778ffc8c784cdd860515d20173f63d66afb43 (commit) from a0309eb384af0b4a92b8a13aba0f8e9df04178e3 (commit)
- Log ----------------------------------------------------------------- commit 85e778ffc8c784cdd860515d20173f63d66afb43 Author: Michal Čihař michal@cihar.com Date: Mon Aug 22 15:36:54 2011 +0200
Should not be called anymore
-----------------------------------------------------------------------
Summary of changes: libraries/theme.lib.php | 1 - 1 files changed, 0 insertions(+), 1 deletions(-)
diff --git a/libraries/theme.lib.php b/libraries/theme.lib.php index 7c773c9..1030d80 100644 --- a/libraries/theme.lib.php +++ b/libraries/theme.lib.php @@ -33,7 +33,6 @@ function PMA_css_gradient($start_color, $end_color) $result[] = 'background: -webkit-gradient(linear, left top, left bottom, from(#' . $start_color . '), to(#' . $end_color . '));'; $result[] = 'background: -moz-linear-gradient(top, #' . $start_color . ', #' . $end_color . ');'; $result[] = 'background: -o-linear-gradient(top, #' . $start_color . ', #' . $end_color . ');'; - $result[] = PMA_ieFilter($start_color, $end_color); if (PMA_USR_BROWSER_AGENT == 'IE' && PMA_USR_BROWSER_VER >= 6 && PMA_USR_BROWSER_VER <= 8) { $result[] = 'filter: progid:DXImageTransform.Microsoft.gradient(startColorstr="#' . $start_color . '", endColorstr="#' . $end_color . '");'; }
hooks/post-receive