diff --git a/www/index.php b/www/index.php index 239b5c9..6c7bbcb 100644 --- a/www/index.php +++ b/www/index.php @@ -342,7 +342,7 @@ function get_table(PDOStatement $stmt, int &$numrows = 0, bool $promoted = false $class=''; } $timeadded=date('Y-m-d', $link['timeadded']); - echo '
'.$link['address'].'.onion
'.$link['description'].'
'.$lastup.'
'.$timeadded.'
'; + echo '
'.$link['address'].'.onion
'.$link['description'].'
'.$lastup.'
'.$timeadded.'
'; } } while($link=$stmt->fetch(PDO::FETCH_ASSOC)){ @@ -364,11 +364,11 @@ function get_table(PDOStatement $stmt, int &$numrows = 0, bool $promoted = false $class.=' promo'; } if($link['locked']==1){ - $edit='-'; + $edit=''; }else{ - $edit='
'; + $edit='
'; } - echo '
'.$link['address'].'.onion
'.$link['description'].'
'.$lastup.'
'.$timeadded.'
'.$edit.'
'; + echo '
'.$link['address'].'.onion
'.$link['description'].'
'.$lastup.'
'.$timeadded.'
'.$edit.'
'; ++$numrows; } echo '';