Completed
Push — master ( 369c90...324e29 )
by Michael
04:57
created
extra/modules/rss/plugins/rssfit.references.php 1 patch
Spacing   +3 added lines, -3 removed lines patch added patch discarded remove patch
@@ -34,7 +34,7 @@  discard block
 block discarded – undo
34 34
 
35 35
     public function loadModule()
36 36
     {
37
-        $mod =& $GLOBALS['module_handler']->getByDirname($this->dirname);
37
+        $mod = & $GLOBALS['module_handler']->getByDirname($this->dirname);
38 38
         if (!$mod || !$mod->getVar('isactive')) {
39 39
             return false;
40 40
         }
@@ -46,7 +46,7 @@  discard block
 block discarded – undo
46 46
     public function &grabEntries(&$obj)
47 47
     {
48 48
         $ret = false;
49
-        require XOOPS_ROOT_PATH . '/modules/references/include/common.php';
49
+        require XOOPS_ROOT_PATH.'/modules/references/include/common.php';
50 50
         $start      = 0;
51 51
         $limit      = $this->grab;
52 52
         $items      = $h_references_articles->getRecentArticles($start, $limit);
@@ -61,7 +61,7 @@  discard block
 block discarded – undo
61 61
                 $ret[$i]['description'] = references_utils::truncate_tagsafe($item->getVar('article_text'), REFERENCES_SHORTEN_TEXT);
62 62
                 $categoryId             = $item->getVar('article_category_id');
63 63
                 $ret[$i]['category']    = isset($categories[$categoryId]) ? $categories[$categoryId]->getVar('category_title') : '';
64
-                $ret[$i]['domain']      = XOOPS_URL . '/modules/' . $this->dirname . '/';
64
+                $ret[$i]['domain']      = XOOPS_URL.'/modules/'.$this->dirname.'/';
65 65
                 ++$i;
66 66
             }
67 67
         }
Please login to merge, or discard this patch.
extra/clone.php 1 patch
Spacing   +1 added lines, -1 removed lines patch added patch discarded remove patch
@@ -79,5 +79,5 @@
 block discarded – undo
79 79
 cloneFileFolder('modules/references');
80 80
 
81 81
 echo "Happy cloning...\n";
82
-echo 'check directory modules/' . $patterns['references'] . " for cloned module \n";
82
+echo 'check directory modules/'.$patterns['references']." for cloned module \n";
83 83
 echo "Consider modifying new module by editing language/english/modinfo.php and assets/images/catads2-4.png manually (if you care)\n";
Please login to merge, or discard this patch.
view.tag.php 1 patch
Spacing   +2 added lines, -2 removed lines patch added patch discarded remove patch
@@ -18,5 +18,5 @@
 block discarded – undo
18 18
  *
19 19
  * ****************************************************************************
20 20
  */
21
-require __DIR__ . '/header.php';
22
-require XOOPS_ROOT_PATH . '/modules/tag/view.tag.php';
21
+require __DIR__.'/header.php';
22
+require XOOPS_ROOT_PATH.'/modules/tag/view.tag.php';
Please login to merge, or discard this patch.