Documentation
From Relay
Previous Releases
We are constantly making updates to the source with small annoying bug fixes. Check to make sure that you have the most current version if you are experiencing any odd behavior. Check the revision history for a list of bugs we've already taken care of.
Beta 0.1
Released: 06-17-2006
Customization
Sorting files and folders in alphabetical order
Just open relay.php and replace this line into the getFolder() function;
while (($file = readdir($dh)) !== false) {
with this code
while (($el = readdir($dh)) !== false) {$files[]=$el;}
sort($files);
foreach ($files as $key => $file) {
