Skip to content
GitLab
Explore
Sign in
Primary navigation
Search or go to…
Project
D
dolibarr
Manage
Activity
Members
Code
Repository
Branches
Commits
Tags
Repository graph
Compare revisions
Deploy
Releases
Container Registry
Model registry
Analyze
Contributor analytics
Repository analytics
Model experiments
Help
Help
Support
GitLab documentation
Compare GitLab plans
Community forum
Contribute to GitLab
Provide feedback
Keyboard shortcuts
?
Snippets
Groups
Projects
Show more breadcrumbs
Software_Artifact_Infrastructure_Repository
dolibarr
Commits
3db021ad
Commit
3db021ad
authored
9 years ago
by
Laurent Destailleur
Browse files
Options
Downloads
Patches
Plain Diff
Fix Use correct boolean type.
Complete doxygen
parent
241bf85d
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
htdocs/core/ajax/security.php
+3
-6
3 additions, 6 deletions
htdocs/core/ajax/security.php
htdocs/core/lib/security.lib.php
+1
-1
1 addition, 1 deletion
htdocs/core/lib/security.lib.php
htdocs/core/lib/security2.lib.php
+1
-1
1 addition, 1 deletion
htdocs/core/lib/security2.lib.php
with
5 additions
and
8 deletions
htdocs/core/ajax/security.php
+
3
−
6
View file @
3db021ad
...
...
@@ -17,7 +17,8 @@
/**
* \file htdocs/core/ajax/security.php
* \brief File for return security data
* \brief This ajax component is used to generated has keys for security purposes
* like key to use into URL to protect them.
*/
if
(
!
defined
(
'NOTOKENRENEWAL'
))
define
(
'NOTOKENRENEWAL'
,
'1'
);
// Disables token renewal
...
...
@@ -33,10 +34,6 @@ require '../../main.inc.php';
* View
*/
// Ajout directives pour resoudre bug IE
//header('Cache-Control: Public, must-revalidate');
//header('Pragma: public');
//top_htmlhead("", "", 1); // Replaced with top_httphead. An ajax page does not need html header.
top_httphead
();
...
...
@@ -48,7 +45,7 @@ if (isset($_GET['action']) && ! empty($_GET['action']))
if
(
$_GET
[
'action'
]
==
'getrandompassword'
&&
$user
->
admin
)
{
require_once
DOL_DOCUMENT_ROOT
.
'/core/lib/security2.lib.php'
;
$generic
=
$_GET
[
'generic'
];
$generic
=
$_GET
[
'generic'
]
?
true
:
false
;
echo
getRandomPassword
(
$generic
);
}
}
...
...
This diff is collapsed.
Click to expand it.
htdocs/core/lib/security.lib.php
+
1
−
1
View file @
3db021ad
...
...
@@ -90,7 +90,7 @@ function dol_hash($chain,$type=0)
else
if
(
!
empty
(
$conf
->
global
->
MAIN_SECURITY_HASH_ALGO
)
&&
$conf
->
global
->
MAIN_SECURITY_HASH_ALGO
==
'sha1'
)
return
sha1
(
$chain
);
else
if
(
!
empty
(
$conf
->
global
->
MAIN_SECURITY_HASH_ALGO
)
&&
$conf
->
global
->
MAIN_SECURITY_HASH_ALGO
==
'sha1md5'
)
return
sha1
(
md5
(
$chain
));
// No enconding defined
// No
particular
enconding defined
, use default
return
md5
(
$chain
);
}
...
...
This diff is collapsed.
Click to expand it.
htdocs/core/lib/security2.lib.php
+
1
−
1
View file @
3db021ad
...
...
@@ -439,7 +439,7 @@ function encodedecode_dbpassconf($level=0)
/**
* Return a generated password using default module
*
* @param boolean $generic true=Create generic password (use
default crypt function
), false=Use the configured password generation module
* @param boolean $generic true=Create generic password (use
md5, sha1 depending on setup
), false=Use the configured password generation module
* @return string New value for password
*/
function
getRandomPassword
(
$generic
=
false
)
...
...
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