On the Raspberry Settings page, I noticed when setting the HDMI-Mode to either value „DVI/VGA“ or value „HDMI“ and saving, the page always displays „DVI/VGA“ and /boot/config.txt also shows hdmi-drive set to 1 for DVI/VGA, rather than 2 for HDMI.
I found the value configured in /var/www/max2play/application/plugins/raspberrysettings/view/setup.php sets both DVI/VGA and HDMI to value 1.
In version 2.52
on line 229:
<option <?php if($rs->view->hdmi_drive == „2“) echo ’selected‘; ?> value=’1′>HDMI</option>
needs to be changed to:
<option <?php if($rs->view->hdmi_drive == „2“) echo ’selected‘; ?> value=’2′>HDMI</option>
The fix is still in the update schedule of our developer. He will integrate the fix as soon as possible, but it might take a few more beta updates. Nevertheless, thanks for the reminder. I will try to increase the priority of the fix again.