Instead of manually setting my plugins I added this to my config.php I hope you find this usefull.
// Jacob
$plugin = 0;
if ($dh = opendir(SM_PATH.'plugins')) {
while (false !== ($file = readdir($dh))) {
if (is_dir(SM_PATH.'plugins/'.$file) && $file != '.' && $file != '..')
$GLOBALS['plugins'][$plugin] = $file;
$plugin++;
}
}
closedir($dh);
}
------------------------------------------------------- This sf.net email is sponsored by:ThinkGeek Welcome to geek heaven. http://thinkgeek.com/sf -- squirrelmail-users mailing list List Address: [EMAIL PROTECTED] List Archives: http://sourceforge.net/mailarchive/forum.php?forum_id=2995 List Info: https://lists.sourceforge.net/lists/listinfo/squirrelmail-users
