- Short PHP echo tags
<?=
replaced with full definitions<?php echo
in the entire application for maximum compatibility with differentphp.ini
configurations.
- Fixed bugs in
/classes/Links.php
dealing with auto-detecting pretty links. The code is quite nasty, if you know of a more elegant solution please submit a pull request.
- Fixed bug in
/classes/Links.php
where if using pretty links, any request inside of the/actions
directory would cause pretty links to disable.
- Short PHP tags
<?
replaced with full tags<?php
in the entire application for maximum compatibility with differentphp.ini
configurations.
- Fixed bug in
install.php
which generated aCRYPTO_SEED
of 62 characters instead of 64. Reduced required length inapp.config.php
ofCRYPTO_SEED
to 40 characters.
- Removed the requirement of setting up re-write rules and created a new class
/classes/Links
. All links work either with pretty links enabled or disabled. To use pretty links, re-write rules must still be configured on the web-server. See step #13 in the installation instructions for further details.
- Initial release