Tagged 0.7.5
[scuttle] / templates / bookmarks.tpl.php
index 368ec8b87ebcf1da90c3562beda37b85910a47fc..ab35787766c1a9c1b7ba7e89ff6b0c2e4a67ab8d 100644 (file)
@@ -1,18 +1,14 @@
 <?php
-$userservice =& ServiceFactory::getServiceInstance('UserService');
+$userservice     =& ServiceFactory::getServiceInstance('UserService');
 $bookmarkservice =& ServiceFactory::getServiceInstance('BookmarkService');
 
 $logged_on_userid = $userservice->getCurrentUserId();
 $this->includeTemplate($GLOBALS['top_include']);
 
-include('search.inc.php');
+include 'search.inc.php';
 if (count($bookmarks) > 0) {
 ?>
 
-<script type="text/javascript">
-window.onload = playerLoad;
-</script>
-
 <p id="sort">
     <?php echo T_("Sort by:"); ?>
     <a href="?sort=date_desc"><?php echo T_("Date"); ?></a><span> / </span>
@@ -25,7 +21,6 @@ window.onload = playerLoad;
     }
     ?>
 </p>
-
 <ol<?php echo ($start > 0 ? ' start="'. ++$start .'"' : ''); ?> id="bookmarks">
 
     <?php

Benjamin Mako Hill || Want to submit a patch?