Fixed client details page as functions was declared twice

This commit is contained in:
johnnyq
2021-12-23 10:58:16 -05:00
parent 308bf0967f
commit a9fb11e3ef
5 changed files with 8 additions and 5 deletions

View File

@@ -80,8 +80,8 @@
$iPhone = stripos($_SERVER['HTTP_USER_AGENT'],"iPhone");
$iPad = stripos($_SERVER['HTTP_USER_AGENT'],"iPad");
if( $iPod || $iPhone || $iPad){
$session_map_source = "apple";
if($iPod || $iPhone || $iPad){
$session_map_source = "apple";
}else{
$session_map_source = "google";
}