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
3f712783
Commit
3f712783
authored
15 years ago
by
Regis Houssin
Browse files
Options
Downloads
Patches
Plain Diff
Works on enhancement of project tasks
Fix: security check
parent
e0cc389c
No related branches found
Branches containing commit
No related tags found
Tags containing commit
No related merge requests found
Changes
1
Hide whitespace changes
Inline
Side-by-side
Showing
1 changed file
htdocs/projet/liste.php
+3
-2
3 additions, 2 deletions
htdocs/projet/liste.php
with
3 additions
and
2 deletions
htdocs/projet/liste.php
+
3
−
2
View file @
3f712783
...
...
@@ -68,8 +68,9 @@ llxHeader("",$langs->trans("Projects"),"EN:Module_Projects|FR:Module_Projets|ES:
$projectstatic
=
new
Project
(
$db
);
$staticsoc
=
new
Societe
(
$db
);
$sql
=
"SELECT p.rowid as projectid, p.ref, p.title, p.fk_statut, p.dateo as do, p.public"
;
$sql
.
=
", s.nom, s.rowid as socid, s.client"
;
$sql
=
"SELECT p.rowid as projectid, p.ref, p.title, p.fk_statut, p.public"
;
$sql
.
=
", p.datec as date_create, p.dateo as date_start, p.datee as date_end"
;
$sql
.
=
", s.nom, s.rowid as socid"
;
$sql
.
=
" FROM "
.
MAIN_DB_PREFIX
.
"projet as p"
;
$sql
.
=
" LEFT JOIN "
.
MAIN_DB_PREFIX
.
"societe as s on p.fk_soc = s.rowid"
;
$sql
.
=
" WHERE p.entity = "
.
$conf
->
entity
;
...
...
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