Changeset 11194
- Timestamp:
- Mar 31, 2009, 3:46:50 PM (13 years ago)
- Location:
- OpenPNE/trunk/webapp
- Files:
-
- 2 edited
Legend:
- Unmodified
- Added
- Removed
-
OpenPNE/trunk/webapp/lib/mail/sns.php
r10987 r11194 173 173 elseif ( 174 174 $to_user == 'album' || 175 preg_match('/^a(\d+)-([0-9a-f] )$/', $to_user, $matches)175 preg_match('/^a(\d+)-([0-9a-f]+)$/', $to_user, $matches) 176 176 ) { 177 177 … … 198 198 elseif ( 199 199 preg_match('/^ai(\d+)$/', $to_user, $matches) || 200 preg_match('/^ai(\d+)-([0-9a-f] )$/', $to_user, $matches)200 preg_match('/^ai(\d+)-([0-9a-f]+)$/', $to_user, $matches) 201 201 ) { 202 202 -
OpenPNE/trunk/webapp/modules/ktai/page/h_album_edit.php
r10986 r11194 13 13 // --- リクエスト変数 14 14 $target_c_album_id = $requests['target_c_album_id']; 15 $subject = $requests['subject']; 16 $description = $requests['description']; 17 $public_flag = $requests['public_flag']; 15 18 // ---------- 16 19 … … 21 24 handle_kengen_error(); 22 25 } 26 $c_album['subject'] = $subject; 27 $c_album['description'] = $description; 28 $c_album['public_flag'] = $public_flag; 23 29 $this->set('target_c_album', $c_album); 24 30 } else { 25 $c_album['public_flag'] = $c_member['public_flag_ diary'];31 $c_album['public_flag'] = $c_member['public_flag_album']; 26 32 $this->set('target_c_album', $c_album); 27 33 }
Note: See TracChangeset
for help on using the changeset viewer.