Added span's for the modified/original date fields so they can be styled
[scuttle] / templates / bookmarks.tpl.php
index d068a9a725a4ca5b1cc6455f04f150ef45e8d41b..a53559074d03f57f9a69358a7b52dabd3113d601 100644 (file)
@@ -103,7 +103,7 @@ if (count($bookmarks) > 0) {
         if ($row['bDatetime'] == $row['bModified']) {
             echo '<div class="meta">'. date($GLOBALS['shortdate'], strtotime($row['bDatetime'])) . $cats . $copy . $edit ."</div>\n";
         } else {
-            echo '<div class="meta">updated: '. date($GLOBALS['shortdate'], strtotime($row['bModified'])) . ", original: ". date($GLOBALS['shortdate'], strtotime($row['bDatetime'])) . $cats . $copy . $edit ."</div>\n";
+            echo '<div class="meta"><span id="date-updated">updated: '. date($GLOBALS['shortdate'], strtotime($row['bModified'])) . '</span>, <span id="date-original">original: '. date($GLOBALS['shortdate'], strtotime($row['bDatetime'])) . "</span>" . $cats . $copy . $edit ."</div>\n";
         }
         echo "</li>\n";
     }

Benjamin Mako Hill || Want to submit a patch?