fixed the hours bug

This commit is contained in:
Daniel Camargo 2014-03-04 09:54:38 -03:00
parent 5b974484cb
commit a1a99388b0

View File

@ -1109,7 +1109,10 @@ class Crunchbutton_Restaurant extends Cana_Table_Trackchange {
}
// get the legacy data
$out = array_merge( $out, $this->hours_legacy( $isCockpit ) );
if( !$isCockpit ){
$out = array_merge( $out, $this->hours_legacy( $isCockpit ) );
}
return $out;
}