Skip to content

Commit

Permalink
refs #1052
Browse files Browse the repository at this point in the history
  * 필요없는 호출 삭제
  • Loading branch information
inureyes committed Feb 17, 2010
1 parent 7e40567 commit 8d6ed26
Show file tree
Hide file tree
Showing 7 changed files with 0 additions and 10 deletions.
4 changes: 0 additions & 4 deletions interface/blog/comment/addopenid/index.php
Original file line number Diff line number Diff line change
Expand Up @@ -3,11 +3,7 @@
/// All rights reserved. Licensed under the GPL.
/// See the GNU General Public License for more details. (/documents/LICENSE, /documents/COPYRIGHT)
require ROOT . '/library/preprocessor.php';
requireComponent('Textcube.Control.Openid');

if (false) {
fetchConfigVal();
}
$entryId = $suri['id'];
$IV = array(
'GET' => array(
Expand Down
1 change: 0 additions & 1 deletion interface/blog/comment/delete/index.php
Original file line number Diff line number Diff line change
Expand Up @@ -17,7 +17,6 @@
)
);
require ROOT . '/library/preprocessor.php';
requireComponent('Textcube.Control.Openid');

$blogid = getBlogId();
list($replier) = getCommentAttributes($blogid,$suri['id'],'replier');
Expand Down
1 change: 0 additions & 1 deletion interface/owner/data/remove/index.php
Original file line number Diff line number Diff line change
Expand Up @@ -10,7 +10,6 @@
);
require ROOT . '/library/preprocessor.php';
requireStrictRoute();
requireComponent('Textcube.Data.DataMaintenance');
if (empty($_POST['confirmativePassword']) || !User::confirmPassword(User::getBlogOwner(getBlogId()), $_POST['confirmativePassword']))
Respond::ResultPage(1);
DataMaintenance::removeAll(Validator::getBool(@$_POST['removeAttachments']));
Expand Down
1 change: 0 additions & 1 deletion interface/owner/network/xfn/index.php
Original file line number Diff line number Diff line change
Expand Up @@ -4,7 +4,6 @@
/// See the GNU General Public License for more details. (/documents/LICENSE, /documents/COPYRIGHT)
require ROOT . '/library/preprocessor.php';
requireModel("blog.link");
requireComponent("Textcube.Core.BackwardCompatibility");

if( isset($_POST['usexfn']) ) {
updateXfn( $blogid, $_POST );
Expand Down
1 change: 0 additions & 1 deletion interface/owner/setting/openid/change/index.php
Original file line number Diff line number Diff line change
Expand Up @@ -11,7 +11,6 @@
);

require ROOT . '/library/preprocessor.php';
requireComponent( 'Textcube.Control.Openid' );
requireLibrary('blog.skin');
requireStrictRoute();
requireModel( 'common.plugin' );
Expand Down
1 change: 0 additions & 1 deletion interface/owner/setting/openid/delegate/index.php
Original file line number Diff line number Diff line change
Expand Up @@ -10,7 +10,6 @@
);

require ROOT . '/library/preprocessor.php';
requireComponent( 'Textcube.Control.Openid' );
requireLibrary('blog.skin');
requireStrictRoute();
$skin = new Skin($skinSetting['skin']);
Expand Down
1 change: 0 additions & 1 deletion library/model/blog.blogSetting.php
Original file line number Diff line number Diff line change
Expand Up @@ -141,7 +141,6 @@ function setDefaultDomain($blogid, $default) {
function useBlogSlogan($blogid, $useSloganOnPost, $useSloganOnCategory, $useSloganOnTag) {
global $blog;
requireModel('blog.feed');
requireComponent('Needlworks.Cache.PageCache');
$useSloganOnPost = $useSloganOnPost ? 1 : 0;
$useSloganOnCategory = $useSloganOnCategory ? 1 : 0;
$useSloganOnTag = $useSloganOnTag ? 1 : 0;
Expand Down

0 comments on commit 8d6ed26

Please sign in to comment.