diff options
author | vincent-peugnet <v.peugnet@free.fr> | 2018-11-02 02:03:52 +0100 |
---|---|---|
committer | vincent-peugnet <v.peugnet@free.fr> | 2018-11-02 02:03:52 +0100 |
commit | 85824de70ded75c98bd50220160e2171fdc8df41 (patch) | |
tree | 11480f65ff97ddbb3ea4806ff1f313628ced15a0 /w/class/modelanalyse.php | |
parent | 36ef34af2abcdea63a73b578208f20ca40b52f49 (diff) | |
download | wcms-85824de70ded75c98bd50220160e2171fdc8df41.tar.gz wcms-85824de70ded75c98bd50220160e2171fdc8df41.zip |
render working and url auto link
Diffstat (limited to 'w/class/modelanalyse.php')
-rw-r--r-- | w/class/modelanalyse.php | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/w/class/modelanalyse.php b/w/class/modelanalyse.php index b7819aa..379c41a 100644 --- a/w/class/modelanalyse.php +++ b/w/class/modelanalyse.php @@ -12,7 +12,7 @@ class Modelanalyse extends Modelart public function analyseall() { - $artlist = $this->getlister(['*']); + $artlist = $this->getlister(); $artlist2 = []; foreach ($artlist as $art) { @@ -30,7 +30,7 @@ class Modelanalyse extends Modelart { $art->setlinkfrom($this->analyselinkfrom($art)); - $artlist = $this->getlister(['id', 'linkfrom']); + $artlist = $this->getlister(); $art->setlinkto($this->analyselinkto($art->id(), $artlist)); return $art; |