Show
Ignore:
Timestamp:
08/07/08 16:11:47 (5 months ago)
Author:
coolengineer
Message:
  • see #960
  • 태그를 추출하는 알고리즘에 ";", ":" 등이 없는 것으로 가정함 (css에서 사용하는 것들)
Files:
1 modified

Legend:

Unmodified
Added
Removed
  • trunk/plugins/CL_Moblog/index.php

    r6380 r6532  
    11<? 
    22requireComponent( "Needlworks.Mail.Pop3" ); 
     3requireModel( "common.setting" ); 
    34 
    45class Moblog 
     
    180181    function extractTags( & $mail ) 
    181182    { 
    182         $p = '/{([^}]*)}/'; 
     183        $p = '/{([^}:;]*)}/'; 
    183184        $tags = array(); 
    184185        if( preg_match( $p, $mail['text'], $m ) ) { 
     
    356357{ 
    357358    global $blogURL; 
    358     requireModel("common.setting"); 
    359359    if( Acl::check('group.administrators') && $_SERVER['REQUEST_METHOD'] == 'POST' ) { 
    360360        setBlogSetting( 'MmsPop3Email', $_POST['pop3email'] );