summaryrefslogtreecommitdiff
path: root/received_pages.php
diff options
context:
space:
mode:
authorMax Kremmel <xing@synapse.plus.com>2006-02-16 13:48:13 +0000
committerMax Kremmel <xing@synapse.plus.com>2006-02-16 13:48:13 +0000
commitd729805cda2f966f3fa8f61bb761837419b50e19 (patch)
tree93e2ffcbaef532c8a868fb034058f16da9d40c0a /received_pages.php
parent0d9b2c0b2b972490b81c4236b48589a1a5484df8 (diff)
downloadwiki-d729805cda2f966f3fa8f61bb761837419b50e19.tar.gz
wiki-d729805cda2f966f3fa8f61bb761837419b50e19.tar.bz2
wiki-d729805cda2f966f3fa8f61bb761837419b50e19.zip
new API for parseData(); please view ApiChangeLog for details
Diffstat (limited to 'received_pages.php')
-rw-r--r--received_pages.php8
1 files changed, 4 insertions, 4 deletions
diff --git a/received_pages.php b/received_pages.php
index fa85479..1f800b0 100644
--- a/received_pages.php
+++ b/received_pages.php
@@ -1,6 +1,6 @@
<?php
/**
- * $Header: /cvsroot/bitweaver/_bit_wiki/Attic/received_pages.php,v 1.6 2006/02/06 00:12:23 squareing Exp $
+ * $Header: /cvsroot/bitweaver/_bit_wiki/Attic/received_pages.php,v 1.7 2006/02/16 13:48:13 squareing Exp $
*
* Copyright (c) 2004 bitweaver.org
* Copyright (c) 2003 tikwiki.org
@@ -8,7 +8,7 @@
* All Rights Reserved. See copyright.txt for details and a complete list of authors.
* Licensed under the GNU LESSER GENERAL PUBLIC LICENSE. See license.txt for details
*
- * $Id: received_pages.php,v 1.6 2006/02/06 00:12:23 squareing Exp $
+ * $Id: received_pages.php,v 1.7 2006/02/16 13:48:13 squareing Exp $
* @package wiki
* @subpackage functions
*/
@@ -57,7 +57,7 @@ $gBitSmarty->assign('title', $info["title"]);
$gBitSmarty->assign('data', $info["data"]);
$gBitSmarty->assign('comment', $info["comment"]);
// Assign parsed
-$gBitSmarty->assign('parsed', $wikilib->parseData($info["data"]));
+$gBitSmarty->assign('parsed', $wikilib->parseData($info));
if (isset($_REQUEST["remove"])) {
$commlib->remove_received_page($_REQUEST["remove"]);
@@ -69,7 +69,7 @@ if (isset($_REQUEST["save"])) {
$gBitSmarty->assign('data', $_REQUEST["data"]);
$gBitSmarty->assign('comment', $_REQUEST["comment"]);
$gBitSmarty->assign('received_page_id', $_REQUEST["received_page_id"]);
- $gBitSmarty->assign('parsed', $gBitSystem->parseData($_REQUEST["data"]));
+ $gBitSmarty->assign('parsed', $gBitSystem->parseData($_REQUEST));
}
if (empty( $_REQUEST["sort_mode"] )) {
$sort_mode = 'received_date_desc';