I've the same "Three lines under" problem.
I just take a quick look in the html rendering and find the problem : a few BR tags in the DIV tags. You can find them in the PHP file too.
My question is for Nick : I imagine that you includes those for a good reason. Can we delete them or not ?
Thank you for this one, and a big THANKS A LOT for what the team done with CB. Great job !
CU
Xav'
Post edited by: xaviercabanne, at: 2007/02/15 01:56
The default value of profile gallery is 1024 bytes or kilobytes?
If it is in bytes, I'd like to change "Kbytes" to "bytes" in in the page where a user can create a short greeting and decides which group can acces the profile gallery, and gallery submission page.
$htmltext1 = "";
if (!$tabparams["pgmanagementtabenabled"]) return $htmltext1;
// Is user a moderator?
$isModerator=isModerator($my->id);
if (!$isModerator) return $htmltext1;
$query = "SELECT DISTINCT u.id, u.username ";
$query .= "\n FROM #__comprofiler_plug_profilegallery as c, #__users as u";
$query .= "\n WHERE c.pgitemapproved = 0";
$query .= "\n and u.id = c.userid";