adding Camino to the list of browsers that display line breaks in the title attribute

git-svn-id: https://develop.svn.wordpress.org/trunk@360 602fd350-edb4-49c9-b593-d223f7449a82
This commit is contained in:
Alex King 2003-09-08 06:02:41 +00:00
parent 1bdbd3eb74
commit 007654d05b

View File

@ -216,7 +216,8 @@ if ($ak_use_tooltip_titles == 1) {
$ak_day_title_array[] = $ak_temp;
}
}
if (strstr($HTTP_SERVER_VARS["HTTP_USER_AGENT"], "MSIE")) {
if (strstr($_SERVER["HTTP_USER_AGENT"], "MSIE") ||
strstr(strtolower($_SERVER["HTTP_USER_AGENT"]), "camino")) {
$ak_title_separator = "\n";
$ak_trim = 1;
}