Skip to content
Open
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
2 changes: 2 additions & 0 deletions opt/gemeinschaft/htdocs/gui/mod/prov_provparams.php
Original file line number Diff line number Diff line change
Expand Up @@ -43,6 +43,7 @@
$phone_types['snom-320' ] = 'Snom 320';
$phone_types['snom-360' ] = 'Snom 360';
$phone_types['snom-370' ] = 'Snom 370';
$phone_types['snom-821' ] = 'Snom 821';
$phone_types['snom-870' ] = 'Snom 870';
$phone_types['snom-760' ] = 'Snom 760';
$phone_types['snom-720' ] = 'Snom 720';
Expand Down Expand Up @@ -97,6 +98,7 @@
elseif (array_key_exists('snom-320', $phone_types)) $phone_type = 'snom-320';
elseif (array_key_exists('snom-360', $phone_types)) $phone_type = 'snom-360';
elseif (array_key_exists('snom-370', $phone_types)) $phone_type = 'snom-370';
elseif (array_key_exists('snom-821', $phone_types)) $phone_type = 'snom-821';
elseif (array_key_exists('snom-870', $phone_types)) $phone_type = 'snom-870';
elseif (array_key_exists('snom-760', $phone_types)) $phone_type = 'snom-760';
elseif (array_key_exists('snom-720', $phone_types)) $phone_type = 'snom-720';
Expand Down
2 changes: 1 addition & 1 deletion opt/gemeinschaft/htdocs/prov/snom/settings.php
Original file line number Diff line number Diff line change
Expand Up @@ -980,7 +980,7 @@ function _settings_out()
psetting('backlight_idle', '4', array('context'=>'active'));

}
if (($phone_model == '760') || ($phone_model == '720') ) {
if (($phone_model == '760') || ($phone_model == '720') || ($phone_model == '821') ) {
psetting('dkey_fkey1', 'url '. $prov_url_snom .'dial-log.php?user=$user_name1', array('context'=>'active'));
psetting('dkey_fkey2', 'url '. $prov_url_snom .'pb.php?m=$mac&u=$user_name1', array('context'=>'active'));
psetting('gui_fkey1', 'F_CALL_LIST');
Expand Down