Bug in PTZ control code

If you've made a patch to quick fix a bug or to add a new feature not yet in the main tree then post it here so others can try it out.
Post Reply
W.
Posts: 108
Joined: Tue Apr 10, 2007 5:06 pm
Location: Latvia

Bug in PTZ control code

Post by W. »

Found in 1.23.3, but most likely present in all previous versions as well.
Diagonal movements do not work ie UpRight, DownLeft etc.

Fix:
file web/zm_actions.php, line 462, replace regexp

Code: Select all

'/^([a-z]+)([A-Z][a-z]+)([A-Z][a-z]+)$/'
with

Code: Select all

'/^([a-z]+)([A-Z][a-z]+)([A-Z][A-Za-z]+)$/'
file web/zm_request_control.php, line 596, do the same replacement of regexp.

upd.
I just noticed that in other places Philip used

Code: Select all

/^([a-z]+)([A-Z][a-z]+)([A-Z][a-z]+)+$/
, which probably works as well, but I did not test it.
if common sense is so uncommon, why is it called common then?
Post Reply