Page 1 of 1

bug report in 0.10.3

Posted: Tue Oct 04, 2005 8:12 am
by saltydog
This is to report following bug in 0.10.3
I have a "News" page with all news listed in it. If you click on a news title (whichever), cmsmade simple goes to the admin/login page.
In fact, each news is linked to:
http:///admin/moduleinterface.php?module=News&id=cntnt01&cntnt01action=detail&cntnt01articleid=3&cntnt01returnid=-1

As you can see, there is "admin" after .
This is not good for users trying to read the news... Please update!

Re: bug report in 0.10.3

Posted: Tue Oct 04, 2005 9:39 am
by Ted
Sorry, I didn't apply any other fixes except for the security related stuff.  This has actually been around for a bit.  The fix is located here and will be in 0.11.

http://forum.cmsmadesimple.org/index.ph ... 561.0.html

Re: bug report in 0.10.3

Posted: Tue Oct 04, 2005 10:40 am
by saltydog
Got it!
Thank you very much and sorry

Re: bug report in 0.10.3

Posted: Tue Oct 04, 2005 11:58 am
by Ted
Not a problem.  More bug reports are better than not enough.

Re: bug report in 0.10.3

Posted: Tue Oct 04, 2005 12:08 pm
by kishman155
I think it will be a nice think to split out modules and coraplikation and only send a updatekit with
the changed files so it will be easier to update things and there will never come the problem to patch things again..

Is there a place where i can see what kind off things are patched in a subversion?

kishman155

Re: bug report in 0.10.3

Posted: Tue Oct 04, 2005 12:43 pm
by Ted
I've been thinking about that a bit.  I'm trying to come up with a way to somehow grab only the files that have changed or have been added, plus the upgrade scripts.

If you're on unix, you can do something like:

Code: Select all

svn diff http://svn.cmsmadesimple.org/cms/tags/version-0.10.2 http://svn.cmsmadesimple.org/cms/tags/version-0.10.3 | grep "Index: " | cut -d " " -f 2
to get a list of files that have changed.  However, it would still take me some time to figure out how to get that to actually make a usable zip file.