Turning off avatars prevents users from saving changes in their profiles
If you turn off avatars, you can't save your profile data. The problem is the template mollio-beat. In profile_center.tpl, the line:
PHP Code:
<form action="" method="post" id="thisform">
...is after:
PHP Code:
{if $UseAvatars neq false}
If you just move it to before, it'll work. I've attached the fixed profile_center.
RSS feed does not include any language changes
If you look at the RSS feed from Pligg, it uses the generic names such as "Pligg" rather than your site name that you configured in language settings. I included the smart class and updated the calls to
I've attached the fixed version of rss.php to resolve this.
Some outbound links do not work
It seems some outbound links, don't work. I found that in out.php, it grabs the "URL" value using _REQUEST but if the URL an equal sign ("="), it'll lose that part of the URL and thusly not be able to match in the database.
I've attached a fixed version of out.php to resolve this. If there is a URL part, it checks for the query string and grabs the part after the first equals sign.