Changeset 1335

Show
Ignore:
Timestamp:
02/16/07 14:30:06 (2 years ago)
Author:
jm3
Message:

minor re-tweak

Files:

Legend:

Unmodified
Added
Removed
Modified
Copied
Moved
  • feedmelinks/folder-by-tag-name.php

    r1334 r1335  
    1818        $con_t = mysql_connect(); 
    1919        mysql_selectdb( getDBName() ); 
    20          
     20 
    2121        # allow authenticated users to view their own private tags 
    2222        $taglist_clause = "(isPrivate IS NULL OR isPrivate = 0)" . ($authed ? " AND name = '$tag'" : ""); 
     
    2424        $qs = getQuery( "tag_by_name", $user, "($taglist_clause)" ); 
    2525 
     26        #echo $qs; 
     27 
    2628        $q = mysql_query( $qs ); 
    2729        if( !$q || !( $numRows = mysql_num_rows($q))) 
    28                 croak( "Sorry, we screwed up. We're currently working on fixing this. $who_hath no tag called '$tag', dog!" ); 
    29          
     30                croak( "<p>Sorry, we screwed up. We're currently working on fixing this. </p>$who_hath no tag called '$tag', dog!" ); 
     31 
     32 
    3033        # TODO: either handle this case or remove the if/for statements 
    3134        if( $numRows > 1)