Page 1 of 1

bug in TinyMCE? [solved]

Posted: Wed Aug 11, 2010 12:43 pm
by My.WEBDESIGNER
hey,

Ben bezig aan een site dat draait op een windows platform,
dus voor url rewriting gebruik ik de 'internal'-methode.

Nu geeft TinyMCE mij elke keer als ik een link maak naar een CMS pagina, het pad van de doelpagina 2 keer op in de url v/d link. Voorbeeld: http://tinyurl.com/34glp3z (heb een demo hiervan opgezet.)

Specs:
clean install van CMSMS 1.8.1 met TinyMCE 2.7.2

Re: bug in TinyMCE?

Posted: Fri Aug 13, 2010 12:30 pm
by NomadSoul
Exactly the same problem here! (sorry I reply in English)
I upgraded TinyMCE module to version 2.7.2 but still the same problem...

Any idea how to solve this issue please?

Re: bug in TinyMCE?

Posted: Fri Aug 13, 2010 3:40 pm
by NomadSoul
Ok, I found ± the problem : look here http://viewsvn.cmsmadesimple.org/diff.p ... 84&peg=584

When I comment theses lines, no more double Alias in link

Code: Select all

      if ($config['use_hierarchy']) {
        $link.=$entry->HierarchyPath().$config['page_extension'];
      } else {
        $link.=$entry->Alias().$config['page_extension'];
      }
Actually my CMSMS version is still 1.7.1 ... maybe use the last will solve te problem without edit modules/TinyMCE/TinyMCE.module.php (?)

Re: bug in TinyMCE?

Posted: Fri Aug 13, 2010 3:56 pm
by deactivated010521
----------