I decided to quickly release version 1.1.3 of RealURL because it contains a fix to possible compatibility issue with previous versions.
RealURL now recognizes defaultToHTMLsuffixOnPrev not only as boolean but also as string. This allows you to change file extension that RealURL adds by default to the very last segment. For example, if defaultToHTMLsuffixOnPrev is set to 1 or true, than RealURL will append .html suffix to URL and URL will look like http://domain.tld/hello/world.html.
Now suppose you are migrating a ColdFusion site to typo3 and want to keep all URLs to preserve incoming links. Previous RealURL versions did not allow you to change .html to anything else and you had to do magic using mod_rewrite. Now you can set defaultToHTMLsuffixOnPrev to string (like .cfm) and that string will be appended as extension. But here lies the problem. If you set defaultToHTMLsuffixOnPrev to '1' (not to 1 but to '1'), it will be treated as string and append this string to last URL segment.
Firsts, when I saw this bug, I decided to close it because it is a matter of proper configuration. Than I thought that it may affect lots of people. So I did this quick fix: now 1 or 0 or true or false is always treated as boolean and not as string. But warning will be visible in admin panel if it is not a boolean.
By the way, there is a new parameter named allowHTMLsuffix, which is also boolean/string. If it is set, realurl will recognize URLs with last segment having this extension. Thus it may recognize http://domain.tld/hello/world.cfm but generate http://domain.tld/hello/world if you do not set defaultToHTMLsuffixOnPrev. Good for incoming links after migration of you do want to migrate them to new URL naming scheme.
