Completed
Push — master ( 260239...804154 )
by Michael
02:57
created
include/vars.php 1 patch
Indentation   +2 added lines, -2 removed lines patch added patch discarded remove patch
@@ -26,7 +26,7 @@  discard block
 block discarded – undo
26 26
 // ------------------------------------------------------------------------ //
27 27
 
28 28
 if (!defined('PLANET_INI')) {
29
-    define('PLANET_INI', 1);
29
+	define('PLANET_INI', 1);
30 30
 }
31 31
 
32 32
 /*
@@ -54,7 +54,7 @@  discard block
 block discarded – undo
54 54
 
55 55
 // include customized variables
56 56
 if (is_object($GLOBALS['xoopsModule']) && $GLOBALS['moddirname'] == $GLOBALS['xoopsModule']->getVar('dirname', 'n')) {
57
-    $GLOBALS['xoopsModuleConfig'] = planet_load_config();
57
+	$GLOBALS['xoopsModuleConfig'] = planet_load_config();
58 58
 }
59 59
 
60 60
 planet_load_object();
Please login to merge, or discard this patch.
include/form.blog.php 1 patch
Indentation   +27 added lines, -27 removed lines patch added patch discarded remove patch
@@ -32,47 +32,47 @@  discard block
 block discarded – undo
32 32
 $form = new XoopsThemeForm(_EDIT, 'formblog', xoops_getenv('PHP_SELF'), 'POST', true);
33 33
 
34 34
 $form->addElement(new XoopsFormText(planet_constant('MD_FEED'), 'blog_feed', 50, 255,
35
-                                    $blog_obj->getVar('blog_feed', 'E')), true);
35
+									$blog_obj->getVar('blog_feed', 'E')), true);
36 36
 $form->addElement(new XoopsFormText(planet_constant('MD_TITLE'), 'blog_title', 50, 255,
37
-                                    $blog_obj->getVar('blog_title', 'E')));
37
+									$blog_obj->getVar('blog_title', 'E')));
38 38
 $form->addElement(new XoopsFormText(planet_constant('MD_DESC'), 'blog_desc', 50, 255,
39
-                                    $blog_obj->getVar('blog_desc', 'E')));
39
+									$blog_obj->getVar('blog_desc', 'E')));
40 40
 $form->addElement(new XoopsFormText(planet_constant('MD_LINK'), 'blog_link', 50, 255,
41
-                                    $blog_obj->getVar('blog_link', 'E')));
41
+									$blog_obj->getVar('blog_link', 'E')));
42 42
 $form->addElement(new XoopsFormText(planet_constant('MD_LANGUAGE'), 'blog_language', 50, 255,
43
-                                    $blog_obj->getVar('blog_language', 'E')));
43
+									$blog_obj->getVar('blog_language', 'E')));
44 44
 $form->addElement(new XoopsFormText(planet_constant('MD_CHARSET'), 'blog_charset', 50, 255,
45
-                                    $blog_obj->getVar('blog_charset', 'E')));
45
+									$blog_obj->getVar('blog_charset', 'E')));
46 46
 $form->addElement(new XoopsFormText(planet_constant('MD_TRACKBACKPATTERN'), 'blog_trackback', 80, 255,
47
-                                    $blog_obj->getVar('blog_trackback', 'E')));
47
+									$blog_obj->getVar('blog_trackback', 'E')));
48 48
 $form->addElement(new XoopsFormText(planet_constant('MD_IMAGE'), 'blog_image', 50, 255,
49
-                                    $blog_obj->getVar('blog_image', 'E')));
49
+									$blog_obj->getVar('blog_image', 'E')));
50 50
 
51 51
 $categories_option = $category_handler->getList();
52 52
 natsort($categories_option);
53 53
 if (count($categories_option)) {
54
-    $cat_option_tray = new XoopsFormElementTray(planet_constant('MD_CATEGORY'), '<br>');
55
-    $options         = array(0 => _NONE);
56
-    foreach ($categories_option as $id => $title) {
57
-        $options[$id] = $title;
58
-    }
59
-    $cat_select = new XoopsFormSelect('', 'categories', $categories, 3, true);
60
-    $cat_select->addOptionArray($options);
61
-    $cat_option_tray->addElement($cat_select);
62
-    $form->addElement($cat_option_tray);
54
+	$cat_option_tray = new XoopsFormElementTray(planet_constant('MD_CATEGORY'), '<br>');
55
+	$options         = array(0 => _NONE);
56
+	foreach ($categories_option as $id => $title) {
57
+		$options[$id] = $title;
58
+	}
59
+	$cat_select = new XoopsFormSelect('', 'categories', $categories, 3, true);
60
+	$cat_select->addOptionArray($options);
61
+	$cat_option_tray->addElement($cat_select);
62
+	$form->addElement($cat_option_tray);
63 63
 }
64 64
 
65 65
 /* For admin only */
66 66
 if (is_object($xoopsUser) && $xoopsUser->isAdmin()) {
67
-    $status_option_tray = new XoopsFormElementTray(planet_constant('MD_STATUS'), '<br>');
68
-    $status_select      = new XoopsFormSelect('', 'blog_status', $blog_obj->getVar('blog_status'));
69
-    $status_select->addOptionArray(array(
70
-                                       '0' => planet_constant('MD_PENDING'),
71
-                                       '1' => planet_constant('MD_ACTIVE'),
72
-                                       '2' => planet_constant('MD_FEATURED')
73
-                                   ));
74
-    $status_option_tray->addElement($status_select);
75
-    $form->addElement($status_option_tray);
67
+	$status_option_tray = new XoopsFormElementTray(planet_constant('MD_STATUS'), '<br>');
68
+	$status_select      = new XoopsFormSelect('', 'blog_status', $blog_obj->getVar('blog_status'));
69
+	$status_select->addOptionArray(array(
70
+									   '0' => planet_constant('MD_PENDING'),
71
+									   '1' => planet_constant('MD_ACTIVE'),
72
+									   '2' => planet_constant('MD_FEATURED')
73
+								   ));
74
+	$status_option_tray->addElement($status_select);
75
+	$form->addElement($status_option_tray);
76 76
 }
77 77
 
78 78
 $form->addElement(new XoopsFormHidden('blog', $blog_id));
@@ -85,7 +85,7 @@  discard block
 block discarded – undo
85 85
 $button_tray->addElement($butt_save);
86 86
 $butt_cancel = new XoopsFormButton('', 'cancel', _CANCEL, 'button');
87 87
 $butt_cancel->setExtra("onclick='window.document.location=\"" . XOOPS_URL . '/modules/' . $GLOBALS['moddirname']
88
-                       . '/index.php' . URL_DELIMITER . 'b' . (int)$blog_id . "\"'");
88
+					   . '/index.php' . URL_DELIMITER . 'b' . (int)$blog_id . "\"'");
89 89
 $button_tray->addElement($butt_cancel);
90 90
 $form->addElement($button_tray);
91 91
 $form->display();
Please login to merge, or discard this patch.
xml.php 1 patch
Indentation   +132 added lines, -132 removed lines patch added patch discarded remove patch
@@ -28,8 +28,8 @@  discard block
 block discarded – undo
28 28
 include __DIR__ . '/header.php';
29 29
 
30 30
 if (planet_parse_args($args_num, $args, $args_str)) {
31
-    $args['article'] = @$args_num[0];
32
-    $args['type']    = @$args_str[0];
31
+	$args['article'] = @$args_num[0];
32
+	$args['type']    = @$args_str[0];
33 33
 }
34 34
 
35 35
 /* Specified Article */
@@ -46,14 +46,14 @@  discard block
 block discarded – undo
46 46
 
47 47
 $valid_format = array('RSS0.91', 'RSS1.0', 'RSS2.0', 'PIE0.1', 'MBOX', 'OPML', 'ATOM', 'ATOM0.3', 'HTML', 'JS');
48 48
 if ($type === 'RDF') {
49
-    $type = 'RSS1.0';
49
+	$type = 'RSS1.0';
50 50
 }
51 51
 if ($type === 'RSS') {
52
-    $type = 'RSS0.91';
52
+	$type = 'RSS0.91';
53 53
 }
54 54
 if (empty($type) || !in_array($type, $valid_format)) {
55
-    planet_trackback_response(1, planet_constant('MD_INVALID'));
56
-    exit();
55
+	planet_trackback_response(1, planet_constant('MD_INVALID'));
56
+	exit();
57 57
 }
58 58
 
59 59
 $category_handler = xoops_getModuleHandler('category', $GLOBALS['moddirname']);
@@ -62,30 +62,30 @@  discard block
 block discarded – undo
62 62
 $bookmark_handler = xoops_getModuleHandler('bookmark', $GLOBALS['moddirname']);
63 63
 
64 64
 if (!empty($article_id)) {
65
-    $article_obj =& $article_handler->get($article_id);
66
-    if (!$article_obj->getVar('art_id')) {
67
-        planet_trackback_response(1, planet_constant('MD_EXPIRED'));
68
-        exit();
69
-    }
70
-    $source = 'article';
65
+	$article_obj =& $article_handler->get($article_id);
66
+	if (!$article_obj->getVar('art_id')) {
67
+		planet_trackback_response(1, planet_constant('MD_EXPIRED'));
68
+		exit();
69
+	}
70
+	$source = 'article';
71 71
 } elseif (!empty($blog_id)) {
72
-    $blog_obj =& $blog_handler->get($blog_id);
73
-    if (!$blog_obj->getVar('blog_id')) {
74
-        planet_trackback_response(1, planet_constant('MD_INVALID'));
75
-        exit();
76
-    }
77
-    $source = 'blog';
72
+	$blog_obj =& $blog_handler->get($blog_id);
73
+	if (!$blog_obj->getVar('blog_id')) {
74
+		planet_trackback_response(1, planet_constant('MD_INVALID'));
75
+		exit();
76
+	}
77
+	$source = 'blog';
78 78
 } elseif (!empty($category_id)) {
79
-    $source       = 'category';
80
-    $category_obj =& $category_handler->get($category_id);
81
-    if (!$category_obj->getVar('cat_id')) {
82
-        planet_trackback_response(1, planet_constant('MD_INVALID'));
83
-        exit();
84
-    }
79
+	$source       = 'category';
80
+	$category_obj =& $category_handler->get($category_id);
81
+	if (!$category_obj->getVar('cat_id')) {
82
+		planet_trackback_response(1, planet_constant('MD_INVALID'));
83
+		exit();
84
+	}
85 85
 } elseif (!empty($uid)) {
86
-    $source = 'bookmark';
86
+	$source = 'bookmark';
87 87
 } else {
88
-    $source = '';
88
+	$source = '';
89 89
 }
90 90
 
91 91
 $xml_charset = 'UTF-8';
@@ -94,110 +94,110 @@  discard block
 block discarded – undo
94 94
 $tpl->xoops_setCaching(2);
95 95
 $tpl->xoops_setCacheTime(3600);
96 96
 $xoopsCachedTemplateId = md5($xoopsModule->getVar('mid') . ',' . $article_id . ',' . $category_id . ',' . $blog_id . ','
97
-                             . $uid . ',' . $type);
97
+							 . $uid . ',' . $type);
98 98
 if (!$tpl->is_cached('db:system_dummy.tpl', $xoopsCachedTemplateId)) {
99
-    $criteria = new CriteriaCompo();
100
-    $criteria->setLimit($xoopsModuleConfig['articles_perpage']);
101
-    $articles_obj = array();
102
-    switch ($source) {
103
-        case 'article':
104
-            $pagetitle = planet_constant('MD_ARTICLE');
105
-            $rssdesc   = planet_constant('MD_XMLDESC_ARTICLE');
106
-
107
-            $articles_obj[$article_id] =& $article_obj;
108
-
109
-            $xml_link = XOOPS_URL . '/modules/' . $GLOBALS['moddirname'] . '/view.article.php' . URL_DELIMITER . ''
110
-                        . $article_obj->getVar('art_id');
111
-            break;
112
-
113
-        case 'category':
114
-            $pagetitle = planet_constant('MD_CATEGORY');
115
-            $rssdesc   = sprintf(planet_constant('MD_XMLDESC_CATEGORY'), $category_obj->getVar('cat_title'));
116
-
117
-            $criteria->add(new Criteria('bc.cat_id', $category_id));
118
-            $articles_obj =& $article_handler->getByCategory($criteria);
119
-
120
-            $xml_link = XOOPS_URL . '/modules/' . $GLOBALS['moddirname'] . '/index.php' . URL_DELIMITER . 'c'
121
-                        . $category_id;
122
-            break;
123
-
124
-        case 'blog':
125
-            $pagetitle = planet_constant('MD_BLOG');
126
-            $rssdesc   = sprintf(planet_constant('MD_XMLDESC_BLOG'), $blog_obj->getVar('blog_title'));
127
-
128
-            $criteria->add(new Criteria('blog_id', $blog_id));
129
-            $articles_obj =& $article_handler->getAll($criteria);
130
-
131
-            $xml_link = XOOPS_URL . '/modules/' . $GLOBALS['moddirname'] . '/index.php' . URL_DELIMITER . 'b'
132
-                        . $blog_id;
133
-            break;
134
-
135
-        case 'bookmark':
136
-            $author_name = XoopsUser::getUnameFromId($uid);
137
-            $pagetitle   = planet_constant('MD_BOOKMARKS');
138
-            $rssdesc     = sprintf(planet_constant('MD_XMLDESC_BOOKMARK'), $author_name);
139
-
140
-            $criteria->add(new Criteria('bm.bm_uid', $uid));
141
-            $articles_obj =& $article_handler->getByBookmark($criteria);
142
-
143
-            $xml_link = XOOPS_URL . '/modules/' . $GLOBALS['moddirname'] . '/index.php' . URL_DELIMITER . 'u' . $uid;
144
-
145
-            break;
146
-
147
-        default:
148
-            $pagetitle = planet_constant('MD_INDEX');
149
-            $rssdesc   = planet_constant('MD_XMLDESC_INDEX');
150
-
151
-            $articles_obj =& $article_handler->getAll($criteria);
152
-
153
-            $xml_link = XOOPS_URL . '/modules/' . $GLOBALS['moddirname'] . '/index.php';
154
-            break;
155
-    }
156
-    $items = array();
157
-    foreach (array_keys($articles_obj) as $id) {
158
-        $content = $articles_obj[$id]->getVar('art_content');
159
-        $content .= '<br>' . planet_constant('MD_SOURCE') . ': ' . $articles_obj[$id]->getVar('art_link') . ' '
160
-                    . $articles_obj[$id]->getVar('art_author');
161
-        $items[] = array(
162
-            'title'                     => $articles_obj[$id]->getVar('art_title'),
163
-            'link'                      => XOOPS_URL . '/modules/' . $GLOBALS['moddirname'] . '/view.article.php'
164
-                                           . URL_DELIMITER . '' . $articles_obj[$id]->getVar('art_id'),
165
-            'description'               => $content,
166
-            'descriptionHtmlSyndicated' => true,
167
-            'date'                      => $articles_obj[$id]->getTime('rss'),
168
-            'source'                    => XOOPS_URL . '/modules/' . $GLOBALS['moddirname'] . '/',
169
-            'author'                    => $articles_obj[$id]->getVar('art_author')
170
-        );
171
-    }
172
-    unset($articles_obj, $criteria);
173
-
174
-    $xml_handler = xoops_getModuleHandler('xml', $GLOBALS['moddirname']);
175
-    $xml         = $xml_handler->create($type);
176
-    $xml->setVar('encoding', $xml_charset);
177
-    $xml->setVar('title', $xoopsConfig['sitename'] . ' :: ' . $pagetitle, 'UTF-8', $xml_charset, true);
178
-    $xml->setVar('description', $rssdesc, true);
179
-    $xml->setVar('descriptionHtmlSyndicated', true);
180
-    $xml->setVar('link', $xml_link);
181
-    $xml->setVar('syndicationURL', XOOPS_URL . '/' . xoops_getenv('PHP_SELF'));
182
-    $xml->setVar('webmaster', checkEmail($xoopsConfig['adminmail'], true));
183
-    $xml->setVar('editor', checkEmail($xoopsConfig['adminmail'], true));
184
-    $xml->setVar('category', $xoopsModule->getVar('name'), true);
185
-    $xml->setVar('generator', $xoopsModule->getInfo('version'));
186
-    $xml->setVar('language', _LANGCODE);
187
-
188
-    $dimention = @getimagesize(XOOPS_ROOT_PATH . '/modules/' . $GLOBALS['moddirname'] . '/'
189
-                               . $xoopsModule->getInfo('image'));
190
-    $image     = array(
191
-        'width'       => $dimention[0],
192
-        'height'      => $dimention[1],
193
-        'title'       => $xoopsConfig['sitename'] . ' :: ' . $pagetitle,
194
-        'url'         => XOOPS_URL . '/modules/' . $GLOBALS['moddirname'] . '/' . $xoopsModule->getInfo('image'),
195
-        'link'        => XOOPS_URL . '/modules/' . $GLOBALS['moddirname'] . '/',
196
-        'description' => $rssdesc
197
-    );
198
-    $xml->setImage($image);
199
-
200
-    /*
99
+	$criteria = new CriteriaCompo();
100
+	$criteria->setLimit($xoopsModuleConfig['articles_perpage']);
101
+	$articles_obj = array();
102
+	switch ($source) {
103
+		case 'article':
104
+			$pagetitle = planet_constant('MD_ARTICLE');
105
+			$rssdesc   = planet_constant('MD_XMLDESC_ARTICLE');
106
+
107
+			$articles_obj[$article_id] =& $article_obj;
108
+
109
+			$xml_link = XOOPS_URL . '/modules/' . $GLOBALS['moddirname'] . '/view.article.php' . URL_DELIMITER . ''
110
+						. $article_obj->getVar('art_id');
111
+			break;
112
+
113
+		case 'category':
114
+			$pagetitle = planet_constant('MD_CATEGORY');
115
+			$rssdesc   = sprintf(planet_constant('MD_XMLDESC_CATEGORY'), $category_obj->getVar('cat_title'));
116
+
117
+			$criteria->add(new Criteria('bc.cat_id', $category_id));
118
+			$articles_obj =& $article_handler->getByCategory($criteria);
119
+
120
+			$xml_link = XOOPS_URL . '/modules/' . $GLOBALS['moddirname'] . '/index.php' . URL_DELIMITER . 'c'
121
+						. $category_id;
122
+			break;
123
+
124
+		case 'blog':
125
+			$pagetitle = planet_constant('MD_BLOG');
126
+			$rssdesc   = sprintf(planet_constant('MD_XMLDESC_BLOG'), $blog_obj->getVar('blog_title'));
127
+
128
+			$criteria->add(new Criteria('blog_id', $blog_id));
129
+			$articles_obj =& $article_handler->getAll($criteria);
130
+
131
+			$xml_link = XOOPS_URL . '/modules/' . $GLOBALS['moddirname'] . '/index.php' . URL_DELIMITER . 'b'
132
+						. $blog_id;
133
+			break;
134
+
135
+		case 'bookmark':
136
+			$author_name = XoopsUser::getUnameFromId($uid);
137
+			$pagetitle   = planet_constant('MD_BOOKMARKS');
138
+			$rssdesc     = sprintf(planet_constant('MD_XMLDESC_BOOKMARK'), $author_name);
139
+
140
+			$criteria->add(new Criteria('bm.bm_uid', $uid));
141
+			$articles_obj =& $article_handler->getByBookmark($criteria);
142
+
143
+			$xml_link = XOOPS_URL . '/modules/' . $GLOBALS['moddirname'] . '/index.php' . URL_DELIMITER . 'u' . $uid;
144
+
145
+			break;
146
+
147
+		default:
148
+			$pagetitle = planet_constant('MD_INDEX');
149
+			$rssdesc   = planet_constant('MD_XMLDESC_INDEX');
150
+
151
+			$articles_obj =& $article_handler->getAll($criteria);
152
+
153
+			$xml_link = XOOPS_URL . '/modules/' . $GLOBALS['moddirname'] . '/index.php';
154
+			break;
155
+	}
156
+	$items = array();
157
+	foreach (array_keys($articles_obj) as $id) {
158
+		$content = $articles_obj[$id]->getVar('art_content');
159
+		$content .= '<br>' . planet_constant('MD_SOURCE') . ': ' . $articles_obj[$id]->getVar('art_link') . ' '
160
+					. $articles_obj[$id]->getVar('art_author');
161
+		$items[] = array(
162
+			'title'                     => $articles_obj[$id]->getVar('art_title'),
163
+			'link'                      => XOOPS_URL . '/modules/' . $GLOBALS['moddirname'] . '/view.article.php'
164
+										   . URL_DELIMITER . '' . $articles_obj[$id]->getVar('art_id'),
165
+			'description'               => $content,
166
+			'descriptionHtmlSyndicated' => true,
167
+			'date'                      => $articles_obj[$id]->getTime('rss'),
168
+			'source'                    => XOOPS_URL . '/modules/' . $GLOBALS['moddirname'] . '/',
169
+			'author'                    => $articles_obj[$id]->getVar('art_author')
170
+		);
171
+	}
172
+	unset($articles_obj, $criteria);
173
+
174
+	$xml_handler = xoops_getModuleHandler('xml', $GLOBALS['moddirname']);
175
+	$xml         = $xml_handler->create($type);
176
+	$xml->setVar('encoding', $xml_charset);
177
+	$xml->setVar('title', $xoopsConfig['sitename'] . ' :: ' . $pagetitle, 'UTF-8', $xml_charset, true);
178
+	$xml->setVar('description', $rssdesc, true);
179
+	$xml->setVar('descriptionHtmlSyndicated', true);
180
+	$xml->setVar('link', $xml_link);
181
+	$xml->setVar('syndicationURL', XOOPS_URL . '/' . xoops_getenv('PHP_SELF'));
182
+	$xml->setVar('webmaster', checkEmail($xoopsConfig['adminmail'], true));
183
+	$xml->setVar('editor', checkEmail($xoopsConfig['adminmail'], true));
184
+	$xml->setVar('category', $xoopsModule->getVar('name'), true);
185
+	$xml->setVar('generator', $xoopsModule->getInfo('version'));
186
+	$xml->setVar('language', _LANGCODE);
187
+
188
+	$dimention = @getimagesize(XOOPS_ROOT_PATH . '/modules/' . $GLOBALS['moddirname'] . '/'
189
+							   . $xoopsModule->getInfo('image'));
190
+	$image     = array(
191
+		'width'       => $dimention[0],
192
+		'height'      => $dimention[1],
193
+		'title'       => $xoopsConfig['sitename'] . ' :: ' . $pagetitle,
194
+		'url'         => XOOPS_URL . '/modules/' . $GLOBALS['moddirname'] . '/' . $xoopsModule->getInfo('image'),
195
+		'link'        => XOOPS_URL . '/modules/' . $GLOBALS['moddirname'] . '/',
196
+		'description' => $rssdesc
197
+	);
198
+	$xml->setImage($image);
199
+
200
+	/*
201 201
     $item = array(
202 202
         "title" => $datatitle,
203 203
         "link" => $dataurl,
@@ -208,11 +208,11 @@  discard block
 block discarded – undo
208 208
         "author" => $dataauthor
209 209
         );
210 210
     */
211
-    $xml->addItems($items);
211
+	$xml->addItems($items);
212 212
 
213
-    $dummy_content = $xml_handler->display($xml, XOOPS_CACHE_PATH . '/' . $GLOBALS['moddirname'] . '.xml.tmp');
213
+	$dummy_content = $xml_handler->display($xml, XOOPS_CACHE_PATH . '/' . $GLOBALS['moddirname'] . '.xml.tmp');
214 214
 
215
-    $tpl->assign_by_ref('dummy_content', $dummy_content);
215
+	$tpl->assign_by_ref('dummy_content', $dummy_content);
216 216
 }
217 217
 //$content = ob_get_contents();
218 218
 ob_end_clean();
Please login to merge, or discard this patch.
blocks/block.php 1 patch
Indentation   +1 added lines, -1 removed lines patch added patch discarded remove patch
@@ -29,7 +29,7 @@
 block discarded – undo
29 29
 
30 30
 $current_path = __FILE__;
31 31
 if (DIRECTORY_SEPARATOR !== '/') {
32
-    $current_path = str_replace(strpos($current_path, "\\\\", 2) ? "\\\\" : DIRECTORY_SEPARATOR, '/', $current_path);
32
+	$current_path = str_replace(strpos($current_path, "\\\\", 2) ? "\\\\" : DIRECTORY_SEPARATOR, '/', $current_path);
33 33
 }
34 34
 $url_arr = explode('/', strstr($current_path, '/modules/'));
35 35
 include XOOPS_ROOT_PATH . '/modules/' . $url_arr[2] . '/include/vars.php';
Please login to merge, or discard this patch.
language/english/main.php 1 patch
Indentation   +2 added lines, -2 removed lines patch added patch discarded remove patch
@@ -8,13 +8,13 @@
 block discarded – undo
8 8
 
9 9
 $current_path = __FILE__;
10 10
 if (DIRECTORY_SEPARATOR !== '/') {
11
-    $current_path = str_replace(strpos($current_path, "\\\\", 2) ? "\\\\" : DIRECTORY_SEPARATOR, '/', $current_path);
11
+	$current_path = str_replace(strpos($current_path, "\\\\", 2) ? "\\\\" : DIRECTORY_SEPARATOR, '/', $current_path);
12 12
 }
13 13
 $url_arr = explode('/', strstr($current_path, '/modules/'));
14 14
 include XOOPS_ROOT_PATH . '/modules/' . $url_arr[2] . '/include/vars.php';
15 15
 
16 16
 if (defined($GLOBALS['VAR_PREFIXU'] . '_LANG_EN_MAIN')) {
17
-    return;
17
+	return;
18 18
 }
19 19
 define($GLOBALS['VAR_PREFIXU'] . '_LANG_EN_MAIN', 1);
20 20
 
Please login to merge, or discard this patch.
language/english/admin.php 1 patch
Indentation   +2 added lines, -2 removed lines patch added patch discarded remove patch
@@ -8,13 +8,13 @@
 block discarded – undo
8 8
 
9 9
 $current_path = __FILE__;
10 10
 if (DIRECTORY_SEPARATOR !== '/') {
11
-    $current_path = str_replace(strpos($current_path, "\\\\", 2) ? "\\\\" : DIRECTORY_SEPARATOR, '/', $current_path);
11
+	$current_path = str_replace(strpos($current_path, "\\\\", 2) ? "\\\\" : DIRECTORY_SEPARATOR, '/', $current_path);
12 12
 }
13 13
 $url_arr = explode('/', strstr($current_path, '/modules/'));
14 14
 include XOOPS_ROOT_PATH . '/modules/' . $url_arr[2] . '/include/vars.php';
15 15
 
16 16
 if (defined($GLOBALS['VAR_PREFIXU'] . '_LANG_EN_ADMIN')) {
17
-    return;
17
+	return;
18 18
 }
19 19
 define($GLOBALS['VAR_PREFIXU'] . '_LANG_EN_ADMIN', 1);
20 20
 
Please login to merge, or discard this patch.
language/english/blocks.php 1 patch
Indentation   +2 added lines, -2 removed lines patch added patch discarded remove patch
@@ -8,13 +8,13 @@
 block discarded – undo
8 8
 
9 9
 $current_path = __FILE__;
10 10
 if (DIRECTORY_SEPARATOR !== '/') {
11
-    $current_path = str_replace(strpos($current_path, "\\\\", 2) ? "\\\\" : DIRECTORY_SEPARATOR, '/', $current_path);
11
+	$current_path = str_replace(strpos($current_path, "\\\\", 2) ? "\\\\" : DIRECTORY_SEPARATOR, '/', $current_path);
12 12
 }
13 13
 $url_arr = explode('/', strstr($current_path, '/modules/'));
14 14
 include XOOPS_ROOT_PATH . '/modules/' . $url_arr[2] . '/include/vars.php';
15 15
 
16 16
 if (defined($GLOBALS['VAR_PREFIXU'] . '_LANG_EN_BLOCKS')) {
17
-    return;
17
+	return;
18 18
 }
19 19
 define($GLOBALS['VAR_PREFIXU'] . '_LANG_EN_BLOCKS', 1);
20 20
 
Please login to merge, or discard this patch.
language/english/modinfo.php 1 patch
Indentation   +12 added lines, -12 removed lines patch added patch discarded remove patch
@@ -8,13 +8,13 @@  discard block
 block discarded – undo
8 8
 
9 9
 $current_path = __FILE__;
10 10
 if (DIRECTORY_SEPARATOR !== '/') {
11
-    $current_path = str_replace(strpos($current_path, "\\\\", 2) ? "\\\\" : DIRECTORY_SEPARATOR, '/', $current_path);
11
+	$current_path = str_replace(strpos($current_path, "\\\\", 2) ? "\\\\" : DIRECTORY_SEPARATOR, '/', $current_path);
12 12
 }
13 13
 $url_arr = explode('/', strstr($current_path, '/modules/'));
14 14
 include XOOPS_ROOT_PATH . '/modules/' . $url_arr[2] . '/include/vars.php';
15 15
 
16 16
 if (defined($GLOBALS['VAR_PREFIXU'] . '_LANG_EN_MODINFO')) {
17
-    return;
17
+	return;
18 18
 }
19 19
 define($GLOBALS['VAR_PREFIXU'] . '_LANG_EN_MODINFO', 1);
20 20
 
@@ -102,36 +102,36 @@  discard block
 block discarded – undo
102 102
 define($GLOBALS['VAR_PREFIXU'] . '_MI_GLOBAL_BLOGSUBMIT_NOTIFY', 'Article submission');
103 103
 define($GLOBALS['VAR_PREFIXU'] . '_MI_GLOBAL_BLOGSUBMIT_NOTIFYCAP', 'Notify me of any pending blog');
104 104
 define($GLOBALS['VAR_PREFIXU'] . '_MI_GLOBAL_BLOGSUBMIT_NOTIFYDSC',
105
-       'Receive notification when a new blog is submitted');
105
+	   'Receive notification when a new blog is submitted');
106 106
 define($GLOBALS['VAR_PREFIXU'] . '_MI_GLOBAL_BLOGSUBMIT_NOTIFYSBJ',
107
-       '[{X_SITENAME}] {X_MODULE} auto-notify : New blog submitted');
107
+	   '[{X_SITENAME}] {X_MODULE} auto-notify : New blog submitted');
108 108
 define($GLOBALS['VAR_PREFIXU'] . '_MI_GLOBAL_NEWBLOG_NOTIFY', 'New blog');
109 109
 define($GLOBALS['VAR_PREFIXU'] . '_MI_GLOBAL_NEWBLOG_NOTIFYCAP', 'Notify of any new blog published');
110 110
 define($GLOBALS['VAR_PREFIXU'] . '_MI_GLOBAL_NEWBLOG_NOTIFYDSC', 'Receive notification when a new blog is published');
111 111
 define($GLOBALS['VAR_PREFIXU'] . '_MI_GLOBAL_NEWBLOG_NOTIFYSBJ',
112
-       '[{X_SITENAME}] {X_MODULE} auto-notify : New blog published');
112
+	   '[{X_SITENAME}] {X_MODULE} auto-notify : New blog published');
113 113
 define($GLOBALS['VAR_PREFIXU'] . '_MI_GLOBAL_ARTICLEMONITOR_NOTIFY', 'Article monitor');
114 114
 define($GLOBALS['VAR_PREFIXU'] . '_MI_GLOBAL_ARTICLEMONITOR_NOTIFYCAP', 'Notify me of all actions on my articles');
115 115
 define($GLOBALS['VAR_PREFIXU'] . '_MI_GLOBAL_ARTICLEMONITOR_NOTIFYDSC',
116
-       'Receive notification when an action is taken over my articles');
116
+	   'Receive notification when an action is taken over my articles');
117 117
 define($GLOBALS['VAR_PREFIXU'] . '_MI_GLOBAL_ARTICLEMONITOR_NOTIFYSBJ',
118
-       '[{X_SITENAME}] {X_MODULE} auto-notify : New action');
118
+	   '[{X_SITENAME}] {X_MODULE} auto-notify : New action');
119 119
 
120 120
 define($GLOBALS['VAR_PREFIXU'] . '_MI_BLOG_BLOGAPPROVE_NOTIFY', 'Blog approved');
121 121
 define($GLOBALS['VAR_PREFIXU'] . '_MI_BLOG_BLOGAPPROVE_NOTIFYCAP', 'Notify me of approval of this blog');
122 122
 define($GLOBALS['VAR_PREFIXU'] . '_MI_BLOG_BLOGAPPROVE_NOTIFYDSC', 'Receive notification when the blog is approved');
123 123
 define($GLOBALS['VAR_PREFIXU'] . '_MI_BLOG_BLOGAPPROVE_NOTIFYSBJ',
124
-       '[{X_SITENAME}] {X_MODULE} auto-notify : blog approved');
124
+	   '[{X_SITENAME}] {X_MODULE} auto-notify : blog approved');
125 125
 define($GLOBALS['VAR_PREFIXU'] . '_MI_BLOG_BLOGUPDATE_NOTIFY', 'Blog updated');
126 126
 define($GLOBALS['VAR_PREFIXU'] . '_MI_BLOG_BLOGUPDATE_NOTIFYCAP', 'Notify me of update of this blog');
127 127
 define($GLOBALS['VAR_PREFIXU'] . '_MI_BLOG_BLOGUPDATE_NOTIFYDSC', 'Receive notification when the blog is upated');
128 128
 define($GLOBALS['VAR_PREFIXU'] . '_MI_BLOG_BLOGUPDATE_NOTIFYSBJ',
129
-       '[{X_SITENAME}] {X_MODULE} auto-notify : blog updated');
129
+	   '[{X_SITENAME}] {X_MODULE} auto-notify : blog updated');
130 130
 
131 131
 define($GLOBALS['VAR_PREFIXU'] . '_MI_ARTICLE_ARTICLEMONITOR_NOTIFY', 'Article monitor');
132 132
 define($GLOBALS['VAR_PREFIXU'] . '_MI_ARTICLE_ARTICLEMONITOR_NOTIFYCAP',
133
-       'Notify me of any action taken on this article');
133
+	   'Notify me of any action taken on this article');
134 134
 define($GLOBALS['VAR_PREFIXU'] . '_MI_ARTICLE_ARTICLEMONITOR_NOTIFYDSC',
135
-       'Receive notification when an action is taken on this article');
135
+	   'Receive notification when an action is taken on this article');
136 136
 define($GLOBALS['VAR_PREFIXU'] . '_MI_ARTICLE_ARTICLEMONITOR_NOTIFYSBJ',
137
-       '[{X_SITENAME}] {X_MODULE} auto-notify : New article published');
137
+	   '[{X_SITENAME}] {X_MODULE} auto-notify : New article published');
Please login to merge, or discard this patch.
update.php 1 patch
Indentation   +8 added lines, -8 removed lines patch added patch discarded remove patch
@@ -30,13 +30,13 @@  discard block
 block discarded – undo
30 30
 $blog_id      = (int)(!empty($_POST['blog']) ? $_POST['blog'] : (!empty($_GET['blog']) ? $_GET['blog'] : 0));
31 31
 $blog_handler = xoops_getModuleHandler('blog', $GLOBALS['moddirname']);
32 32
 if ($blog_id > 0) {
33
-    $blog  =& $blog_handler->get($blog_id);
34
-    $count = $blog_handler->do_update($blog);
35
-    redirect_header(XOOPS_URL . '/modules/' . $GLOBALS['moddirname'] . '/index.php?blog=' . $blog_id, 2,
36
-                    sprintf(planet_constant('MD_UPDATED'), (int)$count));
33
+	$blog  =& $blog_handler->get($blog_id);
34
+	$count = $blog_handler->do_update($blog);
35
+	redirect_header(XOOPS_URL . '/modules/' . $GLOBALS['moddirname'] . '/index.php?blog=' . $blog_id, 2,
36
+					sprintf(planet_constant('MD_UPDATED'), (int)$count));
37 37
 }
38 38
 if (planet_getcookie('upd') + 30 * 60 > time()) {
39
-    return;
39
+	return;
40 40
 }
41 41
 planet_setcookie('upd', time());
42 42
 $start = 0;
@@ -47,15 +47,15 @@  discard block
 block discarded – undo
47 47
 $criteria->setLimit($xoopsModuleConfig['blogs_perupdate']);
48 48
 $blogs = $blog_handler->getAll($criteria);
49 49
 foreach (array_keys($blogs) as $id) {
50
-    $blog_handler->do_update($blogs[$id]);
50
+	$blog_handler->do_update($blogs[$id]);
51 51
 }
52 52
 $start += count($blogs);
53 53
 if (count($blogs) < $xoopsModuleConfig['blogs_perupdate']) {
54
-    $start = 0;
54
+	$start = 0;
55 55
 }
56 56
 $fp = fopen(XOOPS_CACHE_PATH . '/' . $xoopsModule->getVar('dirname') . '_update.php', 'w');
57 57
 if (!$fp) {
58
-    return;
58
+	return;
59 59
 }
60 60
 fwrite($fp, "<?php\n \$start=" . (int)$start . ";\n?>");
61 61
 fclose($fp);
Please login to merge, or discard this patch.