Changeset 1243
- Timestamp:
- Dec 17, 2006, 5:54:14 PM (15 years ago)
- Location:
- OpenPNE/branches/takanashi/prj_takanashi6/webapp
- Files:
-
- 2 edited
Legend:
- Unmodified
- Added
- Removed
-
OpenPNE/branches/takanashi/prj_takanashi6/webapp/lib/db/commu.php
r1216 r1243 1794 1794 function db_commu_is_c_event_admin($c_commu_topic_id, $c_member_id) 1795 1795 { 1796 $sql = 'SELECT c_ event_member_id FROM c_event_member' .1797 ' WHERE c_commu_topic_id = ? AND c_member_id = ? AND is_admin = 1';1796 $sql = 'SELECT c_member_id FROM c_commu_topic' . 1797 ' WHERE c_commu_topic_id = ? AND c_member_id = ?'; 1798 1798 $params = array(intval($c_commu_topic_id), intval($c_member_id)); 1799 1799 return (bool)db_get_one($sql, $params); -
OpenPNE/branches/takanashi/prj_takanashi6/webapp/modules/pc/templates/c_event_detail.tpl
r1088 r1243 304 304 <div class="padding_s lh_120"> 305 305 306 ({$c_topic.body|nl2br|t_url2cmd :'community'|t_cmd:'community'})306 ({$c_topic.body|nl2br|t_url2cmd|t_cmd}) 307 307 308 308 </div> … … 594 594 595 595 <div class="padding_s lh_120"> 596 ({$item.body|nl2br|t_url2cmd :'community'|t_cmd:'community'})596 ({$item.body|nl2br|t_url2cmd|t_cmd}) 597 597 </div> 598 598 … … 705 705 <div class="padding_s"> 706 706 707 <textarea class="text"name="body" rows="10" cols="50" style="width:415px">({$body})</textarea>707 <textarea name="body" rows="10" cols="50" style="width:415px">({$body})</textarea> 708 708 709 709 </div>
Note: See TracChangeset
for help on using the changeset viewer.