[Phpslash-commit] CVS: phpslash-dev/include/modules/block admin.php,1.5,1.6
Brought to you by:
joestewart,
nhruby
From: Joe S. <joe...@us...> - 2004-10-21 15:44:03
|
Update of /cvsroot/phpslash/phpslash-dev/include/modules/block In directory sc8-pr-cvs1.sourceforge.net:/tmp/cvs-serv32416/phpslash-dev/include/modules/block Modified Files: admin.php Log Message: complete previous commit of UI change. Index: admin.php =================================================================== RCS file: /cvsroot/phpslash/phpslash-dev/include/modules/block/admin.php,v retrieving revision 1.5 retrieving revision 1.6 diff -C2 -d -r1.5 -r1.6 *** admin.php 22 Jun 2004 21:09:04 -0000 1.5 --- admin.php 21 Oct 2004 15:43:52 -0000 1.6 *************** *** 67,72 **** break; case "new": ! if ($perm->have_perm("blockPut")) { ! $content .= $block->putBlock($HTTP_POST_VARS); } break; --- 67,72 ---- break; case "new": ! if ($perm->have_perm("blockNew")) { ! $content .= $block->newBlock(); } break; *************** *** 92,98 **** # break; default: ! if ($perm->have_perm("blockNew")) { ! $content .= $block->newBlock(); /* prints the new block form */ ! } if ($perm->have_perm("blockList")) { $content .= $block->listBlock(); /* prints a list of current blocks */ --- 92,98 ---- # break; default: ! // if ($perm->have_perm("blockNew")) { ! // $content .= $block->newBlock(); /* prints the new block form */ ! // } if ($perm->have_perm("blockList")) { $content .= $block->listBlock(); /* prints a list of current blocks */ |