Changeset 4622
- Timestamp:
- 10/29/07 10:49:36 (2 years ago)
- Location:
- trunk
- Files:
-
- 3 modified
-
blog/owner/center/about/index.php (modified) (2 diffs)
-
blog/owner/entry/delete/index.php (modified) (2 diffs)
-
plugins/FM_Modern/editor.js (modified) (1 diff)
Legend:
- Unmodified
- Added
- Removed
-
trunk/blog/owner/center/about/index.php
r4575 r4622 88 88 <td class="role"><?php echo _t('Editor / Formatter / Module');?></td> 89 89 </tr> 90 <tr> 91 <td class="name"><a href="http://crizin.net">Jaeyong Lee</a></td> 92 <td class="role"><?php echo _t('RSS Reader');?></td> 93 </tr> 90 94 </tbody> 91 95 </table> … … 200 204 <div id="supporter-description" class="section"> 201 205 <h3><span class="text"><?php echo _t('공헌자');?></span></h3> 202 206 <div id="creators-container" class="container"> 207 <h4><?php echo _t('Core creator');?></h4> 208 <p> 209 <a href="http://interlude.pe.kr">Jaehoon Jeong (0.9x),</a> 210 <a href="http://papacha.tistory.com">Sunju Jahng (1.0x)</a> 211 </p> 212 </div> 203 213 <div id="contributor-container" class="container"> 204 214 <h4><?php echo _t('Code Contributor');?></h4> -
trunk/blog/owner/entry/delete/index.php
r4599 r4622 6 6 $IV = array( 7 7 'POST' => array( 8 'targets' => array ('list' )8 'targets' => array ('list','mandatory'=>false) 9 9 ) 10 10 ); … … 13 13 14 14 requireStrictRoute(); 15 16 $isAjaxRequest = checkAjaxRequest(); 15 17 16 18 if(isset($suri['id'])) { -
trunk/plugins/FM_Modern/editor.js
r4594 r4622 1741 1741 html = html.replace(new RegExp("<u([^>]*?)>(.*?)</u>", "gi"), "<ins$1>$2</ins>"); 1742 1742 html = html.replace(new RegExp("<strike([^>]*?)>(.*?)</strike>", "gi"), "<del$1>$2</del>"); 1743 1743 // delete blanks 1744 html = html.replace(new RegExp("<p>\\s*(<br\\s/?)+", "gi"), "<p>"); 1745 html = html.replace(new RegExp("(<br\\s/?>)+\\s*</p>", "gi"), "</p>"); 1746 html = html.replace(new RegExp("<p></p>", "gi"), ""); 1747 html = html.replace(new RegExp("<li>\\s*<p>", "gi"), "<li>"); 1748 html = html.replace(new RegExp("</p>\\s*</li>", "gi"), "</li>"); 1744 1749 if(isWYSIWYG) { 1745 1750 this.contentDocument.body.innerHTML = html;
