Test Setup Failed
Branch 1.0.0-dev (6506b5)
by nguereza
05:54
created
core/functions/function_lang.php 1 patch
Indentation   +1 added lines, -1 removed lines patch added patch discarded remove patch
@@ -22,7 +22,7 @@
 block discarded – undo
22 22
 	 * You should have received a copy of the GNU General Public License
23 23
 	 * along with this program; if not, write to the Free Software
24 24
 	 * Foundation, Inc., 59 Temple Place - Suite 330, Boston, MA  02111-1307, USA.
25
-	*/
25
+	 */
26 26
 
27 27
 	if(! function_exists('__')){
28 28
 		/**
Please login to merge, or discard this patch.
core/functions/function_user_agent.php 1 patch
Indentation   +1 added lines, -1 removed lines patch added patch discarded remove patch
@@ -22,7 +22,7 @@
 block discarded – undo
22 22
 	 * You should have received a copy of the GNU General Public License
23 23
 	 * along with this program; if not, write to the Free Software
24 24
 	 * Foundation, Inc., 59 Temple Place - Suite 330, Boston, MA  02111-1307, USA.
25
-	*/
25
+	 */
26 26
 
27 27
 
28 28
 	/**
Please login to merge, or discard this patch.
core/functions/function_string.php 1 patch
Indentation   +1 added lines, -1 removed lines patch added patch discarded remove patch
@@ -22,7 +22,7 @@
 block discarded – undo
22 22
 	 * You should have received a copy of the GNU General Public License
23 23
 	 * along with this program; if not, write to the Free Software
24 24
 	 * Foundation, Inc., 59 Temple Place - Suite 330, Boston, MA  02111-1307, USA.
25
-	*/
25
+	 */
26 26
 
27 27
 	/**
28 28
 	 *  @file function_string.php
Please login to merge, or discard this patch.
core/common.php 1 patch
Indentation   +14 added lines, -14 removed lines patch added patch discarded remove patch
@@ -22,7 +22,7 @@  discard block
 block discarded – undo
22 22
 	 * You should have received a copy of the GNU General Public License
23 23
 	 * along with this program; if not, write to the Free Software
24 24
 	 * Foundation, Inc., 59 Temple Place - Suite 330, Boston, MA  02111-1307, USA.
25
-	*/
25
+	 */
26 26
 
27 27
 	/**
28 28
 	 *  @file common.php
@@ -413,12 +413,12 @@  discard block
 block discarded – undo
413 413
 
414 414
 
415 415
 	/**
416
-	* Function to stringfy PHP variable, useful in debug situation
417
-	*
418
-	* @param mixed $var the variable to stringfy
419
-	*
420
-	* @return string the stringfy value
421
-	*/
416
+	 * Function to stringfy PHP variable, useful in debug situation
417
+	 *
418
+	 * @param mixed $var the variable to stringfy
419
+	 *
420
+	 * @return string the stringfy value
421
+	 */
422 422
 	function stringfy_vars($var){
423 423
 		return print_r($var, true);
424 424
 	}
@@ -556,13 +556,13 @@  discard block
 block discarded – undo
556 556
 	}
557 557
 	
558 558
 	/**
559
-	* This function is very useful, it allows to recover the instance of the global controller.
560
-	* Note this function always returns the address of the super instance.
561
-	* For example :
562
-	* $obj = & get_instance();
563
-	*  
564
-	* @return object the instance of the "Controller" class
565
-	*/
559
+	 * This function is very useful, it allows to recover the instance of the global controller.
560
+	 * Note this function always returns the address of the super instance.
561
+	 * For example :
562
+	 * $obj = & get_instance();
563
+	 *  
564
+	 * @return object the instance of the "Controller" class
565
+	 */
566 566
 	function & get_instance(){
567 567
 		return Controller::get_instance();
568 568
 	}
Please login to merge, or discard this patch.
core/lang/en/lang_form_validation.php 1 patch
Indentation   +16 added lines, -16 removed lines patch added patch discarded remove patch
@@ -1,24 +1,24 @@
 block discarded – undo
1 1
 <?php 
2
-    defined('ROOT_PATH') || exit('Access denied');
2
+	defined('ROOT_PATH') || exit('Access denied');
3 3
  	/**
4 4
  	 * Form validation language message (English) 
5 5
  	 */
6 6
  	$lang['fv_required']     		= 'Field %1 is required.';
7
-    $lang['fv_min_length']   		= 'Field %1 must contain at least %2 characters.';
8
-    $lang['fv_max_length']   		= 'Field %1 must contain at most %2 characters.';
9
-    $lang['fv_exact_length'] 		= 'Field %1 must contain exactly %2 characters.';
10
-    $lang['fv_less_than'] 		    = 'Field %1 must less than %2.';
11
-    $lang['fv_greater_than'] 		= 'Field %1 must greater than %2.';
12
-    $lang['fv_matches']      		= 'Field %1 must be identical to field %2.';
13
-    $lang['fv_valid_email']  		= 'Field %1 must contain a valid E-mail address.';
14
-    $lang['fv_not_equal_post_key']  = 'Field %1 must not be the same as field %2.';
15
-    $lang['fv_not_equal_string']    = 'Field %1 must not contain the value %2.';
16
-    $lang['fv_depends']      		= 'Field %1 depends on field %2 which is not valid.';
7
+	$lang['fv_min_length']   		= 'Field %1 must contain at least %2 characters.';
8
+	$lang['fv_max_length']   		= 'Field %1 must contain at most %2 characters.';
9
+	$lang['fv_exact_length'] 		= 'Field %1 must contain exactly %2 characters.';
10
+	$lang['fv_less_than'] 		    = 'Field %1 must less than %2.';
11
+	$lang['fv_greater_than'] 		= 'Field %1 must greater than %2.';
12
+	$lang['fv_matches']      		= 'Field %1 must be identical to field %2.';
13
+	$lang['fv_valid_email']  		= 'Field %1 must contain a valid E-mail address.';
14
+	$lang['fv_not_equal_post_key']  = 'Field %1 must not be the same as field %2.';
15
+	$lang['fv_not_equal_string']    = 'Field %1 must not contain the value %2.';
16
+	$lang['fv_depends']      		= 'Field %1 depends on field %2 which is not valid.';
17 17
 	$lang['fv_is_unique']	   		= 'The value of field %1 already exists.';
18 18
 	$lang['fv_is_unique_update']	= 'The value of field %1 already exists for another record.';
19
-    $lang['fv_exists']	   			= 'The value of the field %1 does not exist.';
20
-    $lang['fv_regex']	   			= 'The value of the field %1 does not use the correct format.';
21
-    $lang['fv_in_list']	   			= 'The value of field %1 must be one of the list (%2).';
22
-    $lang['fv_numeric']	   			= 'The value of field %1 must be a number.';
23
-    $lang['fv_callback']	   		= 'The value of field %1 is not valid.';
19
+	$lang['fv_exists']	   			= 'The value of the field %1 does not exist.';
20
+	$lang['fv_regex']	   			= 'The value of the field %1 does not use the correct format.';
21
+	$lang['fv_in_list']	   			= 'The value of field %1 must be one of the list (%2).';
22
+	$lang['fv_numeric']	   			= 'The value of field %1 must be a number.';
23
+	$lang['fv_callback']	   		= 'The value of field %1 is not valid.';
24 24
  	
Please login to merge, or discard this patch.
core/lang/en/lang_file_upload.php 1 patch
Indentation   +11 added lines, -11 removed lines patch added patch discarded remove patch
@@ -1,17 +1,17 @@
 block discarded – undo
1 1
 <?php 
2
-    defined('ROOT_PATH') || exit('Access denied');
2
+	defined('ROOT_PATH') || exit('Access denied');
3 3
  	/**
4 4
  	 * File upload language messages (English) 
5 5
  	 */
6 6
  	$lang['fu_upload_err_ini_size']     = 'The uploaded file exceeds the upload_max_filesize directive in php.ini.';
7
-    $lang['fu_upload_err_form_size']   	= 'The uploaded file exceeds the MAX_FILE_SIZE directive that was specified in the HTML form.';
8
-    $lang['fu_upload_err_partial']   	= 'The uploaded file was only partially uploaded.';
9
-    $lang['fu_upload_err_no_file'] 		= 'No file was choosed. Please select one.';
10
-    $lang['fu_upload_err_no_tmp_dir']   = 'Missing a temporary folder.';
11
-    $lang['fu_upload_err_cant_write'] 	= 'Failed to write file to disk.';
12
-    $lang['fu_upload_err_extension']    = 'A PHP extension stopped the file upload.';
13
-    $lang['fu_accept_file_types']  		= 'Filetype not allowed';
14
-    $lang['fu_file_uploads_disabled']   = 'File uploading option is disabled in php.ini';
15
-    $lang['fu_max_file_size']           = 'The uploaded file size is too big max size is %s';
16
-    $lang['fu_overwritten_not_allowed'] = 'You don\'t allow overwriting existing file';
7
+	$lang['fu_upload_err_form_size']   	= 'The uploaded file exceeds the MAX_FILE_SIZE directive that was specified in the HTML form.';
8
+	$lang['fu_upload_err_partial']   	= 'The uploaded file was only partially uploaded.';
9
+	$lang['fu_upload_err_no_file'] 		= 'No file was choosed. Please select one.';
10
+	$lang['fu_upload_err_no_tmp_dir']   = 'Missing a temporary folder.';
11
+	$lang['fu_upload_err_cant_write'] 	= 'Failed to write file to disk.';
12
+	$lang['fu_upload_err_extension']    = 'A PHP extension stopped the file upload.';
13
+	$lang['fu_accept_file_types']  		= 'Filetype not allowed';
14
+	$lang['fu_file_uploads_disabled']   = 'File uploading option is disabled in php.ini';
15
+	$lang['fu_max_file_size']           = 'The uploaded file size is too big max size is %s';
16
+	$lang['fu_overwritten_not_allowed'] = 'You don\'t allow overwriting existing file';
17 17
 	
Please login to merge, or discard this patch.
core/constants.php 1 patch
Indentation   +1 added lines, -1 removed lines patch added patch discarded remove patch
@@ -22,7 +22,7 @@
 block discarded – undo
22 22
 	 * You should have received a copy of the GNU General Public License
23 23
 	 * along with this program; if not, write to the Free Software
24 24
 	 * Foundation, Inc., 59 Temple Place - Suite 330, Boston, MA  02111-1307, USA.
25
-	*/
25
+	 */
26 26
 
27 27
 	/**
28 28
 	 *  @file constants.php
Please login to merge, or discard this patch.