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!
bug report in 0.10.3
Re: bug report in 0.10.3
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
http://forum.cmsmadesimple.org/index.ph ... 561.0.html
Re: bug report in 0.10.3
Got it!
Thank you very much and sorry
Thank you very much and sorry
Re: bug report in 0.10.3
Not a problem. More bug reports are better than not enough.
-
kishman155
- Translator

- Posts: 169
- Joined: Sat Mar 12, 2005 12:30 pm
Re: bug report in 0.10.3
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
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
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:
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.
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

