summaryrefslogtreecommitdiff
path: root/includes/pear/Text/Wiki/Render/Xhtml/Paragraph.php
diff options
context:
space:
mode:
Diffstat (limited to 'includes/pear/Text/Wiki/Render/Xhtml/Paragraph.php')
-rwxr-xr-x[-rw-r--r--]includes/pear/Text/Wiki/Render/Xhtml/Paragraph.php10
1 files changed, 5 insertions, 5 deletions
diff --git a/includes/pear/Text/Wiki/Render/Xhtml/Paragraph.php b/includes/pear/Text/Wiki/Render/Xhtml/Paragraph.php
index fc73627..361b0ea 100644..100755
--- a/includes/pear/Text/Wiki/Render/Xhtml/Paragraph.php
+++ b/includes/pear/Text/Wiki/Render/Xhtml/Paragraph.php
@@ -9,7 +9,7 @@
* @package Text_Wiki
* @author Paul M. Jones <pmjones@php.net>
* @license http://www.gnu.org/copyleft/lesser.html LGPL License 2.1
- * @version CVS: $Id: Paragraph.php 191862 2005-07-30 08:03:29Z toggg $
+ * @version CVS: $Id$
* @link http://pear.php.net/package/Text_Wiki
*/
@@ -26,7 +26,7 @@
class Text_Wiki_Render_Xhtml_Paragraph extends Text_Wiki_Render {
var $conf = array(
- 'css' => null
+ "css" => null
);
/**
@@ -46,12 +46,12 @@ class Text_Wiki_Render_Xhtml_Paragraph extends Text_Wiki_Render {
{
extract($options); //type
- if ($type == 'start') {
- $css = $this->formatConf(' class="%s"', 'css');
+ if ($type == "start") {
+ $css = $this->formatConf(' class="%s"', "css");
return "<p$css>";
}
- if ($type == 'end') {
+ if ($type == "end") {
return "</p>\n\n";
}
}