diff options
author | jhunkeler <jhunkeler@c5b2fb0a-d05d-0410-98c8-828840a80ff6> | 2009-12-27 19:21:11 -0500 |
---|---|---|
committer | jhunkeler <jhunkeler@c5b2fb0a-d05d-0410-98c8-828840a80ff6> | 2009-12-27 19:21:11 -0500 |
commit | ed943b32335933f369d9aa459689e986c10421ae (patch) | |
tree | 0c862c0f28308dc95e2e382a64a9d3e4bf51cca9 /admin/blocks | |
parent | d526decc4884710ae7fafe7aa5171e7f59b24292 (diff) | |
download | bayonetcms-ed943b32335933f369d9aa459689e986c10421ae.tar.gz |
(OC) fixed some bugs in the admin panel caused by the new sql wrapper. *need to figure out the avatar for smflogin block.
git-svn-id: http://svn.3rd-infantry-division.org/testing/branches/Bayonet CMS v2@403 c5b2fb0a-d05d-0410-98c8-828840a80ff6
Diffstat (limited to 'admin/blocks')
-rw-r--r-- | admin/blocks/functions.php | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/admin/blocks/functions.php b/admin/blocks/functions.php index aaa7f36..5194357 100644 --- a/admin/blocks/functions.php +++ b/admin/blocks/functions.php @@ -119,8 +119,8 @@ function EditBlock($block_id) //Grab the page from the database according to the $page_id passed to the function. $result = $db->Query("SELECT weight,dir_name,position,active,title FROM bayonet_blocks WHERE block_id = '$block_id'"); - $block = $db->FetchRow($result); - + $block = $db->FetchRow($result); + ?> <form action="<?php $_SERVER['PHP_SELF']?>" method="post"> <table align="center"> |