credit to abu baniaz
Cablescanner has a maximum value of 99999 for the networkid
NimManger.py has this line which is limited to four digits
nim.cable.scan_networkid = ConfigInteger(default = 0, limits = (0, 9999))
Making this line equal
nim.cable.scan_networkid = ConfigInteger(default = 0, limits = (0, 99999))
Tested and allows for a five digit networkid to be set which are used for uk cable
http://sourceforge.net/p/openpli/enigma2/ci/b161c960111e41ce07cef4a993afb5d962c9bf7e/tree/lib/python/Components/NimManager.py#l1449