summaryrefslogtreecommitdiff
path: root/edit.php
diff options
context:
space:
mode:
authorLester Caine ext:(%22) <lester@lsces.co.uk>2012-04-29 22:15:23 +0100
committerLester Caine ext:(%22) <lester@lsces.co.uk>2012-04-29 22:15:23 +0100
commit385244033afd2d42323df9c093333bb5f54d9704 (patch)
treed59eb58f1d9a11557dc5748de6622ce5daf3110e /edit.php
parent233aac2a3ff1ac58e7526ea885dcaa7d8daf8edd (diff)
downloadblogs-385244033afd2d42323df9c093333bb5f54d9704.tar.gz
blogs-385244033afd2d42323df9c093333bb5f54d9704.tar.bz2
blogs-385244033afd2d42323df9c093333bb5f54d9704.zip
White pace tidyup
Diffstat (limited to 'edit.php')
-rw-r--r--edit.php6
1 files changed, 3 insertions, 3 deletions
diff --git a/edit.php b/edit.php
index b177b53..4ec0073 100644
--- a/edit.php
+++ b/edit.php
@@ -34,15 +34,15 @@ if (isset($_REQUEST['preview'])) {
//all this should prolly be moved to a BitBlog::preparePreview method and the tpls cleaned - but this works for now -wjames5
$gBitSmarty->assign('title', $_REQUEST["title"]);
$gBitSmarty->assign('edit', $_REQUEST["edit"]);
- $gBitSmarty->assign('parsed', $gContent->parseData( $_REQUEST["edit"], $_REQUEST["format_guid"]));
- $gBitSmarty->assign('user_name', $gBitUser->getDisplayName());
+ $gBitSmarty->assign('parsed', $gContent->parseData( $_REQUEST["edit"], $_REQUEST["format_guid"]));
+ $gBitSmarty->assign('user_name', $gBitUser->getDisplayName());
$gBitSmarty->assign('created', $gBitSystem->getUTCTime());
$gBitSmarty->assign('use_find', isset($_REQUEST["use_find"]) ? 'y' : 'n');
$gBitSmarty->assign('use_title', isset($_REQUEST["use_title"]) ? 'y' : 'n');
$gBitSmarty->assign('allow_comments', isset($_REQUEST["allow_comments"]) ? 'y' : 'n');
$gBitSmarty->assign('max_posts', $_REQUEST["max_posts"]);
//$gBitSmarty->assign('heading', $heading);
- $gContent->invokeServices('content_preview_function');
+ $gContent->invokeServices('content_preview_function');
} else {
$gContent->invokeServices('content_edit_function');
}