10 lines
112 B
PHP
10 lines
112 B
PHP
<?php
|
|
|
|
function is_highest_record_prefer_app($app_id) {
|
|
if($app_id == 105)
|
|
return false;
|
|
|
|
return true;
|
|
}
|
|
|
|
?>
|