Changeset 1283
- Timestamp:
- 12/30/06 12:30:53 (2 years ago)
- Files:
-
- feedmelinks/comments.php (modified) (12 diffs)
Legend:
- Unmodified
- Added
- Removed
- Modified
- Copied
- Moved
feedmelinks/comments.php
r1278 r1283 13 13 ?> 14 14 15 <title> Feed me comments </title> 15 <title> Feed Me Comments! </title> 16 17 <style type="text/css"> 18 h3 { 19 margin-bottom: 0px; 20 } 21 div { 22 line-height: 1.5em; 23 } 24 </style> 16 25 17 26 <?php … … 23 32 ?> 24 33 25 <h 3>34 <h1> 26 35 <?php 27 36 if( $who ) … … 30 39 echo "Delete comment:"; 31 40 else 32 echo "My Comment s";33 ?> 34 </h 3>41 echo "My Comment Activity:"; 42 ?> 43 </h1> 35 44 <?php 36 45 if( $op == "delete" && getOwnerForLink( $link ) == $u ) { … … 72 81 73 82 <div class="column" style="float: left;"> 74 < span style="font-weight: bold; text-transform: uppercase">others' comments on <?= $who ? $who . "'s" : "YOUR" ?> links:</span>83 <h3>Recent Comments on <?= $who ? $who . "'s" : "Your" ?> Links:</h3> 75 84 <div class="onepxlline"> </div> 76 85 <br /> … … 92 101 echo "got here<br />"; 93 102 ?> 94 <b><?= $n ?> <?= $n == 1 ? "comment" : "comments" ?> b>:<br />103 <b><?= $n ?> <?= $n == 1 ? "comment" : "comments" ?></b>:<br /> 95 104 <?php 96 105 … … 101 110 $commentor = $matches[2]; 102 111 $date = $matches[3]; 103 $comment = $matches[4];112 $comment = format_comment( $matches[4] ); 104 113 105 114 echo "$c) by "; … … 112 121 echo "<br />\n"; 113 122 echo " <em>$comment</em>\n"; 123 echo " [<a href='/comments?op=delete&link=$linkId&comment=$line_num'>delete</a>]"; 124 114 125 echo "<br />\n"; 115 126 echo "<br />\n"; … … 130 141 131 142 <br /> 132 <span style="font-weight: bold; text-transform: uppercase"> 133 <?= $who ? ($who . "'s comments on his own links") : "Your comments on your own links" ?>span> 143 <h3><?= $who ? ($who . "'s comments on his own links") : "Your comments on your own links" ?></h3> 134 144 <div class="onepxlline"> </div> 135 145 <br /> … … 184 194 185 195 <div class="column" style="float: right;"> 186 < span style="font-weight: bold; text-transform: uppercase"><?= $who ? $who . "'s" : "" ?> comments on others' links:</span>196 <h3><?= $who ? $who . "'s" : "Your" ?> Comments on Others' Links:</h3> 187 197 <div class="onepxlline"> </div> 188 198 <br /> … … 205 215 $commentor = $matches[1]; 206 216 $date = $matches[4]; 207 $comment = $matches[5];217 $comment = format_comment( $matches[5] ); 208 218 209 219 echo "$c : on "; … … 214 224 echo "<br />\n"; 215 225 echo " <em>$comment</em>\n"; 226 echo " [<a href='/comments?op=delete&link=$linkId&comment=$line_num'>delete</a>]"; 216 227 echo "<br />\n"; 217 228 echo "<br />\n"; … … 237 248 <br /> 238 249 <br /> 250 <br /> 251 <br /> 239 252 <div width="650"> 240 253 <?php include( "$modules/footer.inc.php" ); ?>