shuizhongyueming / flexicontent

Automatically exported from code.google.com/p/flexicontent
0 stars 0 forks source link

J 2.5.4 - FC 2.0 RC4 (r1235) - Problem with SH404 SEF plug-in #414

Closed GoogleCodeExporter closed 9 years ago

GoogleCodeExporter commented 9 years ago
What steps will reproduce the problem?

Enable SH404 SEF

in item view, url generated are like www.domain.com/?cid=x&id=y

What is the expected output? What do you see instead?

url must be : www.domain.com/category_name/item_name.html

What version of the product are you using? On what operating system?
J 2.5.4 - FC 2.0 RC4 (r1235) 

Please provide any additional information below.

The plug-in needs some improvements (need to be looked at SH404 SEO 
parameters,...) but it's possible to fix the problem changing these lines :

switch ($view) {
    case 'items' :

by 

switch ($view) {
    case 'item' :

And
// Do not translate the items url
$row = $database->loadObject (null, false);

By 

// Do not translate the items url
$row = $database->loadObject ();

Regards

Original issue reported on code.google.com by c.pey...@sitefaitbienfait.fr on 11 Apr 2012 at 3:36

GoogleCodeExporter commented 9 years ago
These has been done, thanks

more testing is needed, but since we have another defect issue open, i will 
close this one

Original comment by ggp...@gmail.com on 27 May 2012 at 3:00