Re: Blocks Admin [config]
"MADHATter7" <[email protected]>
| Newsgroups | gmane.comp.web.envolution.devel |
|---|---|
| Message-ID | <006101c24bd4$cc402120$5f1c4ed8@t6a4q5> |
Thanks for the bug report and the fix, e-mail me a copy of the enitre (corrected) module and/or files for inclusion in the next Release Candidate. We appreciate your support and assistance, mh7 madhatter7-9O8nC7T3vzfSUeElwK9/[email protected] ----- Original Message ----- From: "Eric Barr" <[email protected]> To: <[email protected]> Sent: Saturday, August 24, 2002 8:36 PM Subject: [envdev] Blocks Admin [config] > I noticed that in the admin section for blocks that the collapseable menu > configuration isn't working.. some of the variables aren't in the new > language file and the advblock.php file is missing the if{} statement for > the collapseable menu. > > the admin.php file in the language section for Blocks needs to have: > > if (!defined('_CONFIGURE')) { > define('_CONFIGURE','Configuration'); > } > if (!defined('_UPDATE')) { > define('_UPDATE', 'Update'); > } > define('_BLOCKSCONFIG','Disable collapseable menu icons?'); > > added to it, > > and the advblock.php needs to have > > if(pnUserLoggedIn()) { > if(checkuserblock($row)=='1') { > if (!empty($row['title'])) { > $row['title'] .=" <a > href=\"modules.php?op=modload&name=Blocks&file=index&req=ChangeStatus&bid=$row[b id]&authid=".pnSecGenAuthKey()."\"><img > src=\"images/global/upb.gif\" border=\"0\" alt=\"\"></a>"; > } > } else { > $row['content'] =''; > if (!empty($row['title'])) { > $row['title'] .=" <a > href=\"modules.php?op=modload&name=Blocks&file=index&req=ChangeStatus&bid=$row[b id]&authid=".pnSecGenAuthKey()."\"><img > src=\"images/global/downb.gif\" border=\"0\" > alt=\"\"></a>"; > } > } > } > > replaced with: > > // check for collapseable menus being enabled. > if (pnModGetVar('Blocks', 'collapseable') == 1) { > if (pnUserLoggedIn()) { > if (checkuserblock($row)=='1') { > if (!empty($row['title'])) { > $row['title'] .=" <a > href=\"modules.php?op=modload&name=Blocks&file=index&req=ChangeStatus&bid=$row[b id]&authid=".pnSecGenAuthKey()."\"><img > src=\"images/global/upb.gif\" border=\"0\" alt=\"\"></a>"; > } > } else { > $row['content'] =''; > if (!empty($row['title'])) { > $row['title'] .=" <a > href=\"modules.php?op=modload&name=Blocks&file=index&req=ChangeStatus&bid=$row[b id]&authid=".pnSecGenAuthKey()."\"><img > src=\"images/global/downb.gif\" border=\"0\" alt=\"\"></a>"; > } > } > } > } > > if this has already been fixed.. please disregard! thanks > > ------------------- > ApathyBoy > > > > > _______________________________________________ > Envdev mailing list > [email protected] > http://www.madhatt.info/mailman/listinfo/envdev_madhatt.info