--- bookmarkservice.php.bak 2007-10-12 22:54:16.000000000 +0200
+++ bookmarkservice.php 2007-10-13 00:17:40.000000000 +0200
@@ -298,6 +298,15 @@
$query_2 .= ', '. $GLOBALS['tableprefix'] .'tags AS T'. $i;
$query_4 .= ' AND T'. $i .'.tag = "'. $this->db->sql_escape($tags[$i]) .'" AND T'. $i .'.bId = B.bId';
}
+ //tagmindr - only display tags tagged with remind:yyyy-mm-dd
+ if($tags[0]=="tagmindr"){
+ $query_2 .= ', '. $GLOBALS['tableprefix'] .'tags AS T'. $i;
+ $query_4 .= ' AND ('.
+ '(T'. $i .'.tag = "'. $this->db->sql_escape("remind:".date("Y-m-d")) .'" AND T'. $i .'.bId = B.bId) OR'.
+ '(T'. $i .'.tag = "'. $this->db->sql_escape("remind:".date("m-d")) .'" AND T'. $i .'.bId = B.bId) OR'.
+ '(T'. $i .'.tag = "'. $this->db->sql_escape("remind:".date("d")) .'" AND T'. $i .'.bId = B.bId)'.
+ ')';
+ }

// Search terms
if ($terms) {

