Passed
Push — master ( 670ff5...205918 )
by Sarah
02:00
created
views/file/widgets/showFiles.php 1 patch
Spacing   +1 added lines, -1 removed lines patch added patch discarded remove patch
@@ -12,7 +12,7 @@
 block discarded – undo
12 12
     <div class="post-files" data-layout="<?php echo $object->getUniqueId(); ?>" data-id="photoset-<?php echo $object->getUniqueId(); ?>">
13 13
         <?php foreach ($files as $file) : ?>
14 14
             <?php if ($file->getMimeBaseType() == "image") : ?>
15
-                <a class="image-grid <?php if (count($files) < 3) { echo "half"; } ?> <?php if (count($files) < 2) { echo "full"; } ?>" data-lightbox="<?php if (count($files) > 0) { echo "image-" . $object->getUniqueId(); } ?>" href="<?php echo $file->getUrl(); ?>#.jpeg">
15
+                <a class="image-grid <?php if (count($files) < 3) { echo "half"; } ?> <?php if (count($files) < 2) { echo "full"; } ?>" data-lightbox="<?php if (count($files) > 0) { echo "image-".$object->getUniqueId(); } ?>" href="<?php echo $file->getUrl(); ?>#.jpeg">
16 16
                     <img src="<?php echo $file->getUrl(); ?>#.jpeg" data-highres="<?php echo $file->getUrl(); ?>#.jpeg">
17 17
                 </a> 
18 18
             <?php endif; ?>
Please login to merge, or discard this patch.
views/layouts/main.php 1 patch
Spacing   +2 added lines, -2 removed lines patch added patch discarded remove patch
@@ -81,7 +81,7 @@  discard block
 block discarded – undo
81 81
 
82 82
     <body>
83 83
 	
84
-	<script src="<?php echo $this->theme->getBaseUrl() . '/js/lightbox-plus-jquery.min.js'; ?>"></script>
84
+	<script src="<?php echo $this->theme->getBaseUrl().'/js/lightbox-plus-jquery.min.js'; ?>"></script>
85 85
 	
86 86
     <?php $this->beginBody() ?>
87 87
 	
@@ -150,7 +150,7 @@  discard block
 block discarded – undo
150 150
 		</div>
151 151
 	</div>
152 152
 
153
-	<script src="<?php echo $this->theme->getBaseUrl() . '/js/plugins-scroll.js'; ?>"></script>
153
+	<script src="<?php echo $this->theme->getBaseUrl().'/js/plugins-scroll.js'; ?>"></script>
154 154
 	<script>
155 155
 	$(document).ready(function() {
156 156
 		try {
Please login to merge, or discard this patch.
views/layouts/head.php 1 patch
Spacing   +5 added lines, -5 removed lines patch added patch discarded remove patch
@@ -1,14 +1,14 @@
 block discarded – undo
1 1
 <!-- MAIN STYLE -->
2 2
 
3
-<link rel="stylesheet" type="text/css" media="screen" title="white-theme" href="<?php echo $this->theme->getBaseUrl() . '/css/theme.css'; ?>">
4
-<link rel="alternate stylesheet" type="text/css" media="screen" title="dark-theme" href="<?php echo $this->theme->getBaseUrl() . '/css/dark.css'; ?>">
3
+<link rel="stylesheet" type="text/css" media="screen" title="white-theme" href="<?php echo $this->theme->getBaseUrl().'/css/theme.css'; ?>">
4
+<link rel="alternate stylesheet" type="text/css" media="screen" title="dark-theme" href="<?php echo $this->theme->getBaseUrl().'/css/dark.css'; ?>">
5 5
 
6 6
 <!-- JS -->
7 7
 
8
-<script src="<?php echo $this->theme->getBaseUrl() . '/js/styleswitch.js'; ?>"></script>
9
-<script src="<?php echo $this->theme->getBaseUrl() . '/js/scollme.js'; ?>"></script>
8
+<script src="<?php echo $this->theme->getBaseUrl().'/js/styleswitch.js'; ?>"></script>
9
+<script src="<?php echo $this->theme->getBaseUrl().'/js/scollme.js'; ?>"></script>
10 10
 
11 11
 <!-- OTHER --> 
12 12
 
13
-<link href="<?php echo $this->theme->getBaseUrl() . '/css/lightbox.css'; ?>" rel="stylesheet">
13
+<link href="<?php echo $this->theme->getBaseUrl().'/css/lightbox.css'; ?>" rel="stylesheet">
14 14
 <link href="https//fonts.googleapis.com/css?family=Open+Sans|PT+Sans|Rancho|Ubuntu+Condensed&subset=latin,cyrillic" rel="stylesheet" type="text/css">
Please login to merge, or discard this patch.