Skip to content

Commit

Permalink
Browse files Browse the repository at this point in the history
 * 플러그인 쪽의 도움말 보강
  • Loading branch information
inureyes committed May 4, 2008
1 parent 61f11c1 commit 3ae9feb
Show file tree
Hide file tree
Showing 3 changed files with 3 additions and 3 deletions.
2 changes: 1 addition & 1 deletion interface/owner/plugin/index.php
Original file line number Diff line number Diff line change
Expand Up @@ -274,7 +274,7 @@ function getCurrentSetting( plugin, setYN, width, height, tab) {
<h2 class="caption"><span class="main-text"><?php echo _t('설치된 플러그인 목록입니다');?></span></h2>

<div class="main-explain-box">
<p class="explain"><?php echo _t('블로그에 다양한 기능을 더해보세요. 원하는 기능이 든 아이콘을 눌러주면 바로 블로그의 기능이 업그레이드 됩니다.');?></p>
<p class="explain"><?php echo _t('블로그에 다양한 기능을 더해보세요. 원하는 기능이 든 아이콘을 눌러주면 바로 블로그의 기능이 업그레이드 됩니다.').'<br /> '._t('센터 플러그인은 로그인후 보이는 관리자 패널에 위젯을 추가해 줍니다.').' '._t('표지 플러그인은 블로그의 첫 화면이나 표지 화면에 출력되는 위젯을 추가해 줍니다.').' '._t('센터 플러그인이나 표지 플러그인은 사이드바와 같이 자유롭게 끌어서 위치를 바꿀 수 있습니다.');?></p>
</div>

<ul id="plugin-tabs-box" class="tabs-box">
Expand Down
2 changes: 1 addition & 1 deletion interface/owner/plugin/tableSetting/index.php
Original file line number Diff line number Diff line change
Expand Up @@ -44,7 +44,7 @@ function execLoadFunction() {
<h2 class="caption"><span class="main-text"><?php echo _t('플러그인이 생성한 테이블입니다');?></span></h2>

<div class="main-explain-box">
<p class="explain"><?php echo _t('플러그인이 생성한 테이블입니다. 테이블의 데이터를 삭제할 수 있습니다.');?></p>
<p class="explain"><?php echo _t('플러그인이 생성한 테이블입니다. 더이상 사용하지 않는 플러그인이 예전에 만든 테이블의 경우 테이블의 데이터를 삭제할 수 있습니다. 다중 사용자 모드에서 서비스를 운영하는 경우 자신이 사용하지 않더라도 다른 사용자가 해당 플러그인을 사용할 수 있으니 삭제시 유의하시기 바랍니다.');?></p>
</div>

<table class="data-inbox" cellspacing="0" cellpadding="0">
Expand Down
2 changes: 1 addition & 1 deletion interface/owner/reader/action/feed/add/index.php
Original file line number Diff line number Diff line change
Expand Up @@ -10,7 +10,7 @@
);
require ROOT . '/lib/includeForReader.php';
requireStrictRoute();
$result = array('error' => addFeed($blogid, $_POST['group'], $_POST['url']));
$result = array('error' => addFeed(getBlogId(), $_POST['group'], $_POST['url']));
ob_start();
printFeeds($blogid, $_POST['group']);
$result['view'] = escapeCData(ob_get_contents());
Expand Down

0 comments on commit 3ae9feb

Please sign in to comment.