]> git.quilime.com - clmpr.git/commitdiff
made private[] editable
authorGabriel Dunne <gdunne@quilime.com>
Sun, 19 Feb 2012 01:30:06 +0000 (17:30 -0800)
committerGabriel Dunne <gdunne@quilime.com>
Sun, 19 Feb 2012 01:30:06 +0000 (17:30 -0800)
edit.php
style.css
update.php

index ff07ae4308935e73b162f2f4a5107780bea3ea54..c63a40e12689524529a186dc6c4ca000d796236c 100644 (file)
--- a/edit.php
+++ b/edit.php
@@ -81,6 +81,11 @@ function deleteClump( id ) {
     <br />
 
     <?php if ($canEdit) : ?>
+
+            <input type="checkbox" name="private" <? if($clump['private']==1): echo' checked '; endif;?>tabindex="5"> private
+
+            <br />            <br />
+
         <p>
         <input type="hidden" value="<?php echo $clump['clump_id']; ?>" name="id" />
         <input type="submit" tabindex="5" value="save">
index 639d784bf8f105f1a7b70ea51316c2af7ce6e94d..d7af6af14cc99d7be3e2756ce1a348c7e338a93d 100644 (file)
--- a/style.css
+++ b/style.css
@@ -83,7 +83,7 @@ ul.links li .expand {
 }
 ul.links li .desc {
     display:inline-block;
-    margin:5px 0;
+    margin:2px 0 5px 0;
 }
 ul.links li .tags {
 }
index 47c6feb2893a4f54eeea254d8bc6db658ffa5bc2..a3e6423dbf16681a3b14bb17b2d2be5c27e93778 100644 (file)
@@ -3,14 +3,14 @@
 include 'init.php';
 
 $params = array();
-$params['id']    = isset($_POST['id']) ? $_POST['id'] : null;
+
+$params['id'] = isset($_POST['id']) ? $_POST['id'] : null;
 $params['title'] = isset($_POST['title']) ? $_POST['title'] : null;
-$params['url']   = isset($_POST['url']) ? $_POST['url']  : null;
-$params['tags']  = isset($_POST['tags']) ? $_POST['tags']  : null;
-$params['description']  = isset($_POST['description'])  ? $_POST['description']  : null;
+$params['url'] = isset($_POST['url']) ? $_POST['url']  : null;
+$params['private'] = isset($_POST['private']) && $_POST['private'] == 'on' ? 1 : 0;
+$params['tags'] = isset($_POST['tags']) ? $_POST['tags']  : null;
+$params['description'] = isset($_POST['description'])  ? $_POST['description']  : null;
 
-//print_r($_POST);
-//exit;
 
 try {
 
@@ -63,10 +63,10 @@ try {
 
         # update clump
         $sql = "UPDATE `clumps`
-                SET `url` = ?, `tags` = ?, `title` = ?, `description` = ?
+                SET `url` = ?, `tags` = ?, `title` = ?, `description` = ?, `private` = ? 
                 WHERE `id` = ?";
         $q = $dbh->prepare($sql);
-        $insert = $q->execute( array( $params['url'], $params['tags'], $params['title'], $params['description'], $params['id']));
+        $insert = $q->execute( array( $params['url'], $params['tags'], $params['title'], $params['description'], $params['private'], $params['id']));
 
         header('Location: /get.php?id=' . $params['id']);
         //echo "clumped.<br/><br/>";