Skip to content
GitLab
Explore
Sign in
Primary navigation
Search or go to…
Project
MaarchCourrier
Manage
Activity
Members
Labels
Plan
Issues
Issue boards
Milestones
Redmine
Code
Repository
Branches
Commits
Tags
Repository graph
Compare revisions
Deploy
Releases
Harbor Registry
Model registry
Monitor
Incidents
Analyze
Value stream analytics
Contributor analytics
Repository analytics
Help
Help
Support
GitLab documentation
Compare GitLab plans
Community forum
Contribute to GitLab
Provide feedback
Keyboard shortcuts
?
Snippets
Groups
Projects
Show more breadcrumbs
Maarch
MaarchCourrier
Commits
24da1019
Commit
24da1019
authored
11 years ago
by
Giovannoni Laurent
Browse files
Options
Downloads
Patches
Plain Diff
evo: translation & improvement for error_reporting
parent
a8b03e31
No related branches found
Branches containing commit
No related tags found
Tags containing commit
No related merge requests found
Changes
3
Hide whitespace changes
Inline
Side-by-side
Showing
3 changed files
core/trunk/install/lang/en.php
+13
-2
13 additions, 2 deletions
core/trunk/install/lang/en.php
core/trunk/install/lang/fr.php
+13
-2
13 additions, 2 deletions
core/trunk/install/lang/fr.php
core/trunk/install/view/prerequisites_view.php
+2
-2
2 additions, 2 deletions
core/trunk/install/view/prerequisites_view.php
with
28 additions
and
6 deletions
core/trunk/install/lang/en.php
+
13
−
2
View file @
24da1019
...
...
@@ -82,6 +82,15 @@ if (!defined('_MBSTRING')) {
if
(
!
defined
(
'_XSL'
))
{
define
(
'_XSL'
,
"xsl library"
);
}
if
(
!
defined
(
'_XMLRPC'
))
{
define
(
'_XMLRPC'
,
"XML-RPC library"
);
}
if
(
!
defined
(
'_FILEINFO'
))
{
define
(
'_FILEINFO'
,
"fileinfo library"
);
}
if
(
!
defined
(
'_GETTEXT'
))
{
define
(
'_GETTEXT'
,
"gettext library"
);
}
if
(
!
defined
(
'_PEAR'
))
{
define
(
'_PEAR'
,
"PEAR"
);
}
...
...
@@ -92,8 +101,10 @@ if (!defined('_CLITOOLS')) {
define
(
'_CLITOOLS'
,
"CLITools"
);
}
if
(
!
defined
(
'_ERROR_REPORTING'
))
{
define
(
'_ERROR_REPORTING'
,
"error_reporting if php version < 5.4 so E_ALL & ~E_NOTICE & ~E_DEPRECATED"
.
" else E_ALL & ~E_NOTICE & ~E_DEPRECATED & ~E_STRICT"
);
if
(
version_compare
(
PHP_VERSION
,
'5.4.0'
)
>=
0
)
define
(
'_ERROR_REPORTING'
,
"error_reporting = E_ALL & ~E_NOTICE & ~E_DEPRECATED & ~E_STRICT"
);
else
define
(
'_ERROR_REPORTING'
,
"error_reporting = E_ALL & ~E_NOTICE & ~E_DEPRECATED"
);
}
if
(
!
defined
(
'_DISPLAY_ERRORS'
))
{
define
(
'_DISPLAY_ERRORS'
,
"display_errors (On)"
);
...
...
This diff is collapsed.
Click to expand it.
core/trunk/install/lang/fr.php
+
13
−
2
View file @
24da1019
...
...
@@ -80,6 +80,15 @@ if (!defined('_MBSTRING')) {
if
(
!
defined
(
'_XSL'
))
{
define
(
'_XSL'
,
"librairie xsl"
);
}
if
(
!
defined
(
'_XMLRPC'
))
{
define
(
'_XMLRPC'
,
"librairie XML-RPC"
);
}
if
(
!
defined
(
'_FILEINFO'
))
{
define
(
'_FILEINFO'
,
"librairie fileinfo"
);
}
if
(
!
defined
(
'_GETTEXT'
))
{
define
(
'_GETTEXT'
,
"librairie gettext"
);
}
if
(
!
defined
(
'_PEAR'
))
{
define
(
'_PEAR'
,
"PEAR"
);
}
...
...
@@ -90,8 +99,10 @@ if (!defined('_CLITOOLS')) {
define
(
'_CLITOOLS'
,
"CLITools"
);
}
if
(
!
defined
(
'_ERROR_REPORTING'
))
{
define
(
'_ERROR_REPORTING'
,
"error_reporting si php version < 5.4 alors E_ALL & ~E_NOTICE & ~E_DEPRECATED "
.
"sinon E_ALL & ~E_NOTICE & ~E_DEPRECATED & ~E_STRICT"
);
if
(
version_compare
(
PHP_VERSION
,
'5.4.0'
)
>=
0
)
define
(
'_ERROR_REPORTING'
,
"error_reporting = E_ALL & ~E_NOTICE & ~E_DEPRECATED & ~E_STRICT"
);
else
define
(
'_ERROR_REPORTING'
,
"error_reporting = E_ALL & ~E_NOTICE & ~E_DEPRECATED"
);
}
if
(
!
defined
(
'_DISPLAY_ERRORS'
))
{
define
(
'_DISPLAY_ERRORS'
,
"display_errors (On)"
);
...
...
This diff is collapsed.
Click to expand it.
core/trunk/install/view/prerequisites_view.php
+
2
−
2
View file @
24da1019
...
...
@@ -161,7 +161,7 @@
<?php
echo
_XSL
;
?>
</td>
</tr>
<
!--
tr>
<tr>
<td
class=
"voyantPrerequisites"
>
<?php
echo
$Class_Install
->
checkPrerequisites
(
$Class_Install
->
isPhpRequirements
(
...
...
@@ -172,7 +172,7 @@
<td>
<?php
echo
_GETTEXT
;
?>
</td>
</tr
--
>
</tr>
<tr>
<td
class=
"voyantPrerequisites"
>
<?php
echo
$Class_Install
->
checkPrerequisites
(
...
...
This diff is collapsed.
Click to expand it.
Preview
0%
Loading
Try again
or
attach a new file
.
Cancel
You are about to add
0
people
to the discussion. Proceed with caution.
Finish editing this message first!
Save comment
Cancel
Please
register
or
sign in
to comment