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 | |
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')
-rw-r--r-- | admin/admin_functions.php | 7 | ||||
-rw-r--r-- | admin/admins/functions.php | 4 | ||||
-rw-r--r-- | admin/announcements/functions.php | 11 | ||||
-rw-r--r-- | admin/blocks/functions.php | 4 | ||||
-rw-r--r-- | admin/newsreel/functions.php | 37 |
5 files changed, 39 insertions, 24 deletions
diff --git a/admin/admin_functions.php b/admin/admin_functions.php index 83392a1..95c2aa5 100644 --- a/admin/admin_functions.php +++ b/admin/admin_functions.php @@ -50,8 +50,8 @@ function login() $password = crypt(md5($password),'iamnotadirtywhorebitch'); $result = $db->Query("SELECT * FROM bayonet_users WHERE username = '$username' AND password = '$password' LIMIT 1"); $rows = $db->Rows($result); - $row = $db->Fetch($result); - + $row = $db->FetchRow($result); + if($rows > 0) { $_SESSION['username'] = stripslashes($username); @@ -64,7 +64,8 @@ function login() ReportError("Login incorrect."); //NOT CORRECT LOGIN, DEFAULT TO LOGIN PAGE - echo "<meta http-equiv=\"Refresh\" content=\"1;url=index.php\">"; + //echo "<meta http-equiv=\"Refresh\" content=\"1;url=index.php\">"; + PageRedirect(1, "index.php"); return false; } diff --git a/admin/admins/functions.php b/admin/admins/functions.php index 563b507..6cda0c4 100644 --- a/admin/admins/functions.php +++ b/admin/admins/functions.php @@ -252,8 +252,8 @@ }
$result = $db->Query("SELECT * FROM `bayonet_users` WHERE `user_id` = '$user_id' LIMIT 1");
- $admin = $db->fetch($result);
-
+ $admin = $db->FetchRow($result);
+
if($maxLevel < $admin['level']){
ReportError("You do not have permission to access this user.");
return;
diff --git a/admin/announcements/functions.php b/admin/announcements/functions.php index 917e342..f45a7e3 100644 --- a/admin/announcements/functions.php +++ b/admin/announcements/functions.php @@ -26,7 +26,7 @@ function EditAnnouncements() {
global $db;
- if(isset($_POST['announcementprocessed']))
+ if(isset($_POST['processed']))
{
//Secure our data to prevent injection attacks.
$title = addslashes($_POST['title']);
@@ -43,7 +43,7 @@ function EditAnnouncements() <a href=\"?op=announcements\">Click here if you don't feel like waiting.</a>";
// 3 second redirect to go back to the edit page
- echo "<meta http-equiv=\"Refresh\" content=\"3;url=?op=announcements\">";
+ PageRedirect(2, "?op=announcements");
//die, because we have completed what we wanted to do.
return;
@@ -52,15 +52,14 @@ function EditAnnouncements() //Grab the page from the database according to the $article_id passed to the function.
$result = $db->Query("SELECT title,text FROM bayonet_announcements WHERE announcement_id = 0");
- /** FIXME - this probably broke. */
- $announcement = $db->Fetch($result);
+ $announcement = $db->FetchRow($result);
?>
- <form action="<?php $_SERVER['PHP_SELF'] ?>" method="post">
+ <form action="<?php $_SERVER['PHP_SELF']; ?>" method="post">
<table>
<tr><td>Announcement Title: <input type="text" name="title" value="<?php echo $announcement['title'] ?>" maxlength="50" size="30" /> </td></tr>
<tr><td> <textarea id="markItUp" rows="30" cols="80" name="text"><?php echo $announcement['text'] ?></textarea> </td></tr>
- <tr><td> <input type="submit" name="announcementprocessed" value="Submit Changes" /> </td></tr>
+ <tr><td> <input type="submit" name="processed" value="Submit Changes" /> </td></tr>
</table>
</form>
<?php
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"> diff --git a/admin/newsreel/functions.php b/admin/newsreel/functions.php index 9dece93..6bde17c 100644 --- a/admin/newsreel/functions.php +++ b/admin/newsreel/functions.php @@ -55,6 +55,9 @@ $(document).ready(function(){ * You should have received a copy of the GNU General Public License
* along with this program. If not, see <http://www.gnu.org/licenses/>.
*/
+
+ define(MAX_SLIDES, 6);
+
function EditOrder(){
global $db;
@@ -87,7 +90,7 @@ $(document).ready(function(){ global $db;
$lastspot = GetLastPosition();
- if($lastspot >= 6){
+ if($lastspot >= MAX_SLIDES){
ReportError("There are already 6 active slides. You must disable one in order to enable another.");
PageRedirect(3,"?op=newsreel");
return;
@@ -100,12 +103,20 @@ $(document).ready(function(){ function DisableSlide($slide_id){
global $db;
- echo "Disable: ".$slide_id;
$result = $db->Query("SELECT `weight` FROM `bayonet_newsreel` WHERE `slide_id` = '$slide_id' LIMIT 1");
- $row = $db->Fetch($result);
- foreach($row as $slide){
- $oldWeight = $slide['weight'];
- }
+ $slide = $db->FetchRow($result);
+
+ $oldWeight = $slide['weight'];
+
+ if($oldWeight < MAX_SLIDES){
+ $total = getNumOfActive();
+ for($i=$oldWeight+1; $i<=$total; $i++){
+ //echo "Change Weight:".$i." to ".($i-1)."<br />";
+ $new = $i-1;
+ $db->Query("UPDATE `bayonet_newsreel` SET `weight` = '$new' WHERE `weight` = '$i' LIMIT 1");
+ }
+ }
+
$db->Query("UPDATE `bayonet_newsreel` SET `visible` = 0, `weight` = 0 WHERE `slide_id` = '$slide_id' LIMIT 1");
PageRedirect(0,"?op=newsreel");
}
@@ -134,11 +145,15 @@ $(document).ready(function(){ global $db;
$result = $db->Query("SELECT `weight` FROM `bayonet_newsreel` WHERE `visible` = 1 ORDER BY `weight` DESC LIMIT 1");
- $row = $db->Fetch($result);
- foreach($row as $slide){
- $weight = $slide['weight'];
- }
- return $weight;
+ $row = $db->FetchRow($result);
+
+ return $row['weight'];
+ }
+
+ function getNumOfActive(){
+ global $db;
+ $result = $db->Query("SELECT `slide_id` FROM `bayonet_newsreel` WHERE `visible` = 1");
+ return $db->Rows($result);
}
|