Changeset 3300 for sandbox/blog/owner/entry/visibility/item.php
- Timestamp:
- 05/21/07 02:25:54 (20 months ago)
- Files:
-
- 1 modified
-
sandbox/blog/owner/entry/visibility/item.php (modified) (1 diff)
Legend:
- Unmodified
- Added
- Removed
-
sandbox/blog/owner/entry/visibility/item.php
r3299 r3300 15 15 requireStrictRoute(); 16 16 17 // �����:: �� ���Ʈ�� ���� ��� ������Ȯ�17 // TeamBlog ACL check whether or not current user can edit this post. 18 18 if(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 } 21 23 } 22 24 // End TeamBlog
