beautify single photo header
[phpfspot.git] / phpfspot.class.php
index 9a74a9a078a2484f09978f9eb5b891b7464cd8f3..cf0a60c2b0a109b12d34c2b4b4202daeba3916a9 100644 (file)
@@ -116,7 +116,7 @@ class PHPFSPOT {
          $_SESSION['tag_condition'] = 'or';
 
       if(!isset($_SESSION['sort_order']))
-         $_SESSION['sort_order'] = 'date_asc';
+         $_SESSION['sort_order'] = 'date_desc';
 
       if(!isset($_SESSION['searchfor_tag']))
          $_SESSION['searchfor_tag'] = '';
@@ -643,6 +643,9 @@ class PHPFSPOT {
 
       if(!in_array($tag, $_SESSION['selected_tags']))
          array_push($_SESSION['selected_tags'], $tag);
+
+
+      return "ok";
    
    } // addTag()
 
@@ -663,6 +666,8 @@ class PHPFSPOT {
          sort($_SESSION['selected_tags']);
       }
 
+      return "ok";
+
    } // delTag()
 
    /**
@@ -1447,6 +1452,8 @@ class PHPFSPOT {
    {
       $_SESSION['tag_condition'] = $mode;
 
+      return "ok";
+
    } // setTagCondition()
 
    /** 
@@ -1460,19 +1467,19 @@ class PHPFSPOT {
     */
    public function startSearch($searchfor_tag, $from = 0, $to = 0)
    {
-      if(isset($_GET['from']) && $fspot->isValidDate($_GET['from'])) {
-         $from = $_GET['from'];
+      if(isset($_POST['from']) && $this->isValidDate($_POST['from'])) {
+         $from = $_POST['from'];
       }
-      if(isset($_GET['to']) && $fspot->isValidDate($_GET['to'])) {
-         $to = $_GET['to'];
+      if(isset($_POST['to']) && $this->isValidDate($_POST['to'])) {
+         $to = $_POST['to'];
       }
 
-      if(isset($_GET['for_tag']) && is_string($_GET['for_tag'])) {
-         $searchfor_tag = $_GET['for_tag'];
+      if(isset($_POST['for_tag']) && is_string($_POST['for_tag'])) {
+         $searchfor_tag = $_POST['for_tag'];
       }
 
-      if(isset($_GET['for_name']) && is_string($_GET['for_name'])) {
-         $searchfor_name = $_GET['for_name'];
+      if(isset($_POST['for_name']) && is_string($_POST['for_name'])) {
+         $searchfor_name = $_POST['for_name'];
       }
 
       $this->get_tags();
@@ -1499,6 +1506,8 @@ class PHPFSPOT {
          }
       }
 
+      return "ok";
+
    } // startSearch()
 
    /**