Changeset 1425 for feedmelinks/testing/contacts.php
- Timestamp:
- 03/16/07 10:17:44 (2 years ago)
- Files:
-
- feedmelinks (modified) (1 prop)
- feedmelinks/testing/contacts.php (modified) (3 diffs)
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
blog
xfer
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
xfer
_backups
- Property svn:ignore changed from
feedmelinks/testing/contacts.php
r1278 r1425 1 < %1 <?php 2 2 include_once( "../modules/utils.inc.php" ); 3 3 include_once( "../modules/header.insecure.inc.php" ); … … 10 10 if( $tok && $tok == md5( getPasswdForUser( $u ))) { 11 11 12 %>12 ?> 13 13 <link rel="stylesheet" type="text/css" href="/style/main.css" title="default stylings"> 14 14 15 15 <pre> 16 < %16 <?php 17 17 if( ! $cache ) 18 18 $cache = rebuild_cache( $u, $cache, 1 ); 19 echo "mailtos: "; 20 print_r( get_previous_mailtos( $cache )); 21 echo "contacts: "; 22 print_r( get_contacts( $cache )); 19 20 #echo "mailtos: "; 21 #print_r( get_previous_mailtos( $cache )); 22 #echo "contacts: "; 23 #print_r( get_contacts( $cache )); 24 25 foreach( get_contacts( $cache ) as $item => $jonk ) { 26 $peep =ltrim( rtrim( chop( $item ))); 27 print "$peep " . (user_enabled( $peep ) ? "" : " [<a href='/admin/disable-user?op=re_enable&user=$peep'>DISABLED</a>]") . "<br>"; 28 } 29 30 23 31 echo "\n"; 24 #echo "\ncache: "; 25 #print_r( $cache ); 26 %> 32 ?> 27 33 28 34 TODO: <!-- … … 40 46 </pre> 41 47 42 < %48 <?php 43 49 $users = get_contacts( $cache ); 44 %>50 ?> 45 51 46 52 47 < %= get_contactlist_html( $users, "your peeps", $cache ) %>53 <?= get_contactlist_html( $users, "your peeps", $cache ) ?> 48 54 49 < %55 <?php 50 56 } # end auth 51 %> 52 57 ?>