Passed
Push — master ( 59abca...fa3542 )
by Mihail
05:32
created
Apps/View/Admin/default/feedback/mail/newanswer.php 1 patch
Spacing   +1 added lines, -1 removed lines patch added patch discarded remove patch
@@ -33,7 +33,7 @@
 block discarded – undo
33 33
                 <tbody>
34 34
                 <tr>
35 35
                     <td align="left" style="font-family:Helvetica Neue,Arial,Helvetica,sans-serif;padding-left:9px;font-size:14px;">
36
-                        <a href="<?= \App::$Alias->scriptUrl ?>/feedback/read/<?= $record->id . '/' . $record->hash ?>">
36
+                        <a href="<?= \App::$Alias->scriptUrl ?>/feedback/read/<?= $record->id.'/'.$record->hash ?>">
37 37
                             <?= __('View request') ?>
38 38
                         </a>
39 39
                     </td>
Please login to merge, or discard this patch.
Apps/View/Admin/default/sitemap/index.php 1 patch
Spacing   +3 added lines, -3 removed lines patch added patch discarded remove patch
@@ -20,7 +20,7 @@  discard block
 block discarded – undo
20 20
 <h1><?= __('Sitemap') ?></h1>
21 21
 
22 22
 <p><?= __('Sitemap its a special application to generate sitemap as xml file over sitemap standart for search engines.') ?></p>
23
-<p><?= __('Sitemap main index') ?>: <a href="<?= \App::$Alias->scriptUrl . '/sitemap' ?>" target="_blank">/sitemap</a></p>
23
+<p><?= __('Sitemap main index') ?>: <a href="<?= \App::$Alias->scriptUrl.'/sitemap' ?>" target="_blank">/sitemap</a></p>
24 24
 <h3><?= __('Sitemap files') ?></h3>
25 25
 <?php
26 26
 $items = [];
@@ -32,8 +32,8 @@  discard block
 block discarded – undo
32 32
 
33 33
 $list = $this->listing('ul');
34 34
 
35
-foreach($model->files as $file) {
36
-    $list->li(['type' => 'link', 'link' => \Ffcms\Core\App::$Alias->scriptUrl . $file, 'text' => $file, 'linkProperties' => ['target' => '_blank']]);
35
+foreach ($model->files as $file) {
36
+    $list->li(['type' => 'link', 'link' => \Ffcms\Core\App::$Alias->scriptUrl.$file, 'text' => $file, 'linkProperties' => ['target' => '_blank']]);
37 37
 }
38 38
 echo $list->display();
39 39
 ?>
Please login to merge, or discard this patch.
Apps/Model/Front/Sitemap/EntityBuildMap.php 1 patch
Spacing   +5 added lines, -5 removed lines patch added patch discarded remove patch
@@ -55,16 +55,16 @@  discard block
 block discarded – undo
55 55
                 $this->data[$lang][] = [
56 56
                     'uri' => Url::stringUrl($uri, $lang),
57 57
                     'lastmod' => Date::convertToDatetime($lastmod, 'c'),
58
-                    'freq' => (string)$freq,
59
-                    'priority' => (float)$priority
58
+                    'freq' => (string) $freq,
59
+                    'priority' => (float) $priority
60 60
                 ];
61 61
             }
62 62
         } else { // only one language, multilanguage is disabled
63 63
             $this->data[App::$Properties->get('singleLanguage')][] = [
64 64
                 'uri' => Url::stringUrl($uri),
65 65
                 'lastmod' => Date::convertToDatetime($lastmod, 'c'),
66
-                'freq' => (string)$freq,
67
-                'priority' => (float)$priority
66
+                'freq' => (string) $freq,
67
+                'priority' => (float) $priority
68 68
             ];
69 69
         }
70 70
     }
@@ -87,7 +87,7 @@  discard block
 block discarded – undo
87 87
                 'items' => $items
88 88
             ]);
89 89
             
90
-            File::write(EntityIndexList::INDEX_PATH . '/' . $uniqueName . '.' . $lang . '.xml', $xml);
90
+            File::write(EntityIndexList::INDEX_PATH.'/'.$uniqueName.'.'.$lang.'.xml', $xml);
91 91
         }
92 92
         return true;
93 93
     }
Please login to merge, or discard this patch.