Hi Kevin...
There's a bug in convert.php (at line 22):
PHP Code:
if ($action == "md5");
$md5string = md5($string);
echo "<b>$string</b> encrypts as <b>$md5string</b>";
$action = "intro";
}
Should be:
PHP Code:
if ($action == "md5") {
$md5string = md5($string);
echo "<b>$string</b> encrypts as <b>$md5string</b>";
$action = "intro";
}
For the rest it works great on vB 2.2.1 Kevin.
I loved the attachments management functions, but I have a request Kevin, isn't it possible to show the attachment size? Can't see it anywhere...it is helpful to see it in order to decide if it should be removed or not.
Anyway: GREAT JOB! (as usual)