Add is_opera()

This commit is contained in:
Miles Lott 2001-04-13 13:32:16 +00:00
parent bee99d173e
commit 26f0586888

View File

@ -220,6 +220,18 @@
}
}
function is_opera()
{
if ($this->get_agent()=='OPERA')
{
return true;
}
else
{
return false;
}
}
// Echo content headers for file downloads
function content_header($fn="",$mime="application/octetstream",$length="",$nocache=True)
{