Passed
Push — master ( 32d9a6...bb96f1 )
by Anthony
02:52
created
core/admin/droitsacces/DroitAcces.class.php 1 patch
Spacing   +7 added lines, -7 removed lines patch added patch discarded remove patch
@@ -50,29 +50,29 @@
 block discarded – undo
50 50
     
51 51
     
52 52
         //-------------------------- GETTER ----------------------------------------------------------------------------//
53
-		public function getLogged(){
53
+		public function getLogged() {
54 54
 		    return $this->logged;
55 55
 		}
56
-		public function getSuperAdmin(){
56
+		public function getSuperAdmin() {
57 57
 		    return $this->super_admin;
58 58
 		}
59 59
 
60 60
 		//pour la table liste_droit_acces
61
-		public function getIdListeDroitAcces(){
61
+		public function getIdListeDroitAcces() {
62 62
 		    return $this->id_liste_droit_acces;
63 63
 		}
64 64
 
65 65
 		//pour les droits sur la gestion des contenus
66
-		public function getModifSeo(){
66
+		public function getModifSeo() {
67 67
 		    return $this->modif_seo;
68 68
 		}
69
-		public function getModifContenu(){
69
+		public function getModifContenu() {
70 70
 		    return $this->modif_contenu;
71 71
 		}
72
-		public function getModifNavigation(){
72
+		public function getModifNavigation() {
73 73
 		    return $this->modif_navigation;
74 74
 		}
75
-		public function getSupprimerPage(){
75
+		public function getSupprimerPage() {
76 76
 		    return $this->supprimer_page;
77 77
 		}
78 78
 
Please login to merge, or discard this patch.
core/RedirectError.class.php 1 patch
Spacing   +1 added lines, -1 removed lines patch added patch discarded remove patch
@@ -32,7 +32,7 @@
 block discarded – undo
32 32
 			}
33 33
 
34 34
 
35
-			$find   = 'controller/';
35
+			$find = 'controller/';
36 36
 			$pos = strpos($url, $find);
37 37
 
38 38
 			if ($pos !== false) {
Please login to merge, or discard this patch.
admin/controller/ckeditor.php 1 patch
Spacing   +1 added lines, -1 removed lines patch added patch discarded remove patch
@@ -2,6 +2,6 @@
 block discarded – undo
2 2
 	include_once(ROOT.'libs/ckeditor/ckeditor.php');
3 3
 	require_once(ROOT.'libs/ckfinder/ckfinder.php');
4 4
 	$ckeditor = new CKEditor();
5
-	$ckeditor->basePath	= WEBROOT.'libs/ckeditor/';
5
+	$ckeditor->basePath = WEBROOT.'libs/ckeditor/';
6 6
 	CKFinder::SetupCKEditor($ckeditor, WEBROOT.'libs/ckfinder/');
7 7
 ?>
8 8
\ No newline at end of file
Please login to merge, or discard this patch.
core/images/Resize.class.php 1 patch
Spacing   +2 added lines, -2 removed lines patch added patch discarded remove patch
@@ -210,13 +210,13 @@
 block discarded – undo
210 210
 			 * @param string $savePath
211 211
 			 * @param string $imageQuality
212 212
 			 */
213
-			public function saveImage($savePath, $imageQuality="100")
213
+			public function saveImage($savePath, $imageQuality = "100")
214 214
 			{
215 215
 				// *** Get extension
216 216
 				$extension = strrchr($savePath, '.');
217 217
 	   			$extension = strtolower($extension);
218 218
 
219
-				switch($extension)
219
+				switch ($extension)
220 220
 				{
221 221
 					case '.jpg':
222 222
 					case '.jpeg':
Please login to merge, or discard this patch.