- Enforce minimum elapsed time on registration form
[scuttle] / api / posts_dates.php
index 70987564e9044ea1a6e23ce63b32192da27995a0..672a31227f38154393e7d911df3ce80337b29db6 100644 (file)
@@ -3,11 +3,11 @@
 // by tag).
 
 // Force HTTP authentication first!
-require_once('httpauth.inc.php');
-require_once('../header.inc.php');
+require_once 'httpauth.inc.php';
+require_once '../header.inc.php';
 
 $bookmarkservice =& ServiceFactory::getServiceInstance('BookmarkService');
-$userservice =& ServiceFactory::getServiceInstance('UserService');
+$userservice     =& ServiceFactory::getServiceInstance('UserService');
 
 // Check to see if a tag was specified.
 if (isset($_REQUEST['tag']) && (trim($_REQUEST['tag']) != ''))
@@ -26,17 +26,18 @@ header('Content-Type: text/xml');
 echo '<?xml version="1.0" standalone="yes" ?'.">\r\n";
 echo '<dates tag="'. (is_null($tag) ? '' : filter($tag, 'xml')) .'" user="'. filter($currentusername, 'xml') ."\">\r\n";
 
+$count    = 0;
 $lastdate = NULL;
-foreach($bookmarks['bookmarks'] as $row) {
+foreach ($bookmarks['bookmarks'] as $row) {
     $thisdate = gmdate('Y-m-d', strtotime($row['bDatetime']));
     if ($thisdate != $lastdate && $lastdate != NULL) {
         echo "\t<date count=\"". $count .'" date="'. $lastdate ."\" />\r\n";
         $count = 1;
-    } else {
-        $count = $count + 1;
+    }
+    else {
+        $count++;
     }
     $lastdate = $thisdate;
 }
 
 echo "</dates>";
-?>
\ No newline at end of file

Benjamin Mako Hill || Want to submit a patch?