Changeset 1329
- Timestamp:
- 02/09/07 23:50:47 (2 years ago)
- Files:
-
- feedmelinks (modified) (1 prop)
- feedmelinks/.cvsignore (modified) (1 diff)
- feedmelinks/img/new-user/tiny.php (added)
- feedmelinks/modules/footer.inc.php (modified) (1 diff)
- feedmelinks/modules/utils.inc.php (modified) (4 diffs)
- feedmelinks/portal-uncached.php (modified) (1 diff)
Legend:
- Unmodified
- Added
- Removed
- Modified
- Copied
- Moved
feedmelinks
- Property svn:ignore changed from
.htaccess
cgi-bin
cheat
logs
portal.php
testing
the-lost-urls
utils.inc.php
wall-of-ancients.php
work
*webalizer*
_assets
_profiling
TODO
info.php
setup
_comments
local-remote-root
.DS_Store
flash
_logs
usage
mint
cgi-bin
dev
please
usr
to
.htaccess
cgi-bin
cheat
logs
portal.php
testing
the-lost-urls
utils.inc.php
wall-of-ancients.php
work
*webalizer*
_assets
_profiling
TODO
info.php
setup
_comments
local-remote-root
.DS_Store
flash
_logs
usage
mint
cgi-bin
dev
please
usr
blog
- Property svn:ignore changed from
feedmelinks/.cvsignore
r969 r1329 26 26 please 27 27 usr 28 blog feedmelinks/modules/footer.inc.php
r1326 r1329 9 9 <a href="http://toolstomaketools.svnrepository.com/codepot/trac.cgi/browser/feedmelinks">Open Source</a> 10 10 creation by the <a class="hot" href="http://codeswami.com/">Code Swami</a>. ] 11 12 13 <a href="http://blog.feedmelinks.com/">blog.feedmelinks.com</a> 11 14 </div> 12 15 <% feedmelinks/modules/utils.inc.php
r1328 r1329 1065 1065 if( $l ) { 1066 1066 1067 if( $user_linkstyle == "basic" ) { 1068 $s .= getBareUserLink( $l["u"] ); 1069 $s .= "'s "; 1070 } else if( $user_linkstyle == "icons" ) { 1071 $s .= getUserLink( $l["u"] ); 1072 $s .= "'s "; 1073 } # else none... 1067 $s .= "<a title='" . $l["u"] . "'href='/u/" . $l["u"] ."'><img src='/" . get_tiny_image( $l["u"] ) . "' width='16' height='16' border='0' /></a> "; 1068 1069 #if( $user_linkstyle == "basic" ) { 1070 #$s .= getBareUserLink( $l["u"] ); 1071 #$s .= "'s "; 1072 #} else if( $user_linkstyle == "icons" ) { 1073 #$s .= getUserLink( $l["u"] ); 1074 #$s .= "'s "; 1075 #} # else none... 1074 1076 1075 1077 # link … … 1099 1101 } 1100 1102 1101 function get_their_links_html( ) {1103 function get_their_links_html( $title ) { 1102 1104 return get_linklist( getMasterQuery() . " ORDER BY links.ID DESC LIMIT 15", 1103 1105 array( "get_their_links_header_cb", $u), array( "get_their_links_footer_cb", NULL ), "basic" ); … … 1243 1245 ob_start(); 1244 1246 if( func_get_arg( 0 )) { 1245 %><a href="< %= getSiteURL() %>/contacts/">view all <%= get_ownoun() %> peeps' links</a><%1247 %><a href="<?= getSiteURL() ?>/contacts/">view all <?= get_ownoun() ?> peeps' links</a><?php 1246 1248 } else { 1247 %><a href="<%= getSiteURL() %>/contacts/?summarize=1">view just the most recent link from each of <%= get_ownoun() %> peeps</a><%1249 ?><a href="<?= getSiteURL() ?>/contacts/?summarize=1">view just the most recent link from each of <?= get_ownoun() ?> peeps</a><?php 1248 1250 } 1249 1251 return ob_get_clean(); … … 2433 2435 } 2434 2436 } 2435 return " /img/new-user/profile";2437 return "img/new-user/$thingy"; 2436 2438 } 2437 2439 feedmelinks/portal-uncached.php
r1302 r1329 227 227 </div> 228 228 229 <div id="newLinks" class="box"> 230 <div class="subhead"> 231 new links 232 </div> 233 <% include( "$modules/recent-with-times.inc.php"); %> 229 <?php 230 echo get_their_links_html( "New Links" ); 231 ?> 232 </div> 234 233 </div> 235 234