Show
Ignore:
Timestamp:
05/21/07 02:25:54 (20 months ago)
Author:
inureyes
Message:

#408

  • r3299의 수정사항.
Files:
1 modified

Legend:

Unmodified
Added
Removed
  • sandbox/blog/owner/entry/visibility/item.php

    r3299 r3300  
    1515requireStrictRoute(); 
    1616 
    17 // �����:: �� ���Ʈ�� ���� ��� ������Ȯ� 
     17// TeamBlog ACL check whether or not current user can edit this post. 
    1818if(empty($pc) && !empty($suri['id'])){ 
    19     $isPosting = DBQuery::queryCell("SELECT Team FROM {$database['prefix']}TeamEntryRelations WHERE Owner='$owner' and Team='$_SESSION[admin]' and Id='$suri[id]' " ); 
    20     if(empty($isPosting)) { exit; } 
     19    $isPosting = DBQuery::queryCell("SELECT team FROM {$database['prefix']}TeamEntryRelations WHERE owner='".$owner."' and team='".$_SESSION['admin']."' and id='".$suri['id']."'" ); 
     20    if(empty($isPosting)) { 
     21        exit; 
     22    } 
    2123} 
    2224// End TeamBlog