GetSimple Support Forum
Beta Download for 2.02 Available - Printable Version

+- GetSimple Support Forum (http://get-simple.info/forums)
+-- Forum: GetSimple (http://get-simple.info/forums/forumdisplay.php?fid=3)
+--- Forum: GS Development Testing - (alpha/beta) (http://get-simple.info/forums/forumdisplay.php?fid=14)
+--- Thread: Beta Download for 2.02 Available (/showthread.php?tid=667)

Pages: 1 2


Beta Download for 2.02 Available - madvic - 2010-08-31

thanks,
Where can we see changelog ?
thanks


Beta Download for 2.02 Available - madvic - 2010-08-31

I find : http://code.google.com/p/get-simple-cms/source/detail?r=183


Beta Download for 2.02 Available - Zegnåt - 2010-08-31

A partial changelog is available on our website. However, I’m sure that it’s not the complete changelog since so many things have been changed. I guess we have to sit down and write a full changelog, if anyone wants to help let me know.

Edit:
madvic Wrote:I find: http://code.google.com/p/get-simple-cms/source/detail?r=183
That is not a changelog from GetSimple 2.01 to GetSimple 2.02. Those are only the changes from r182 to r183.


Beta Download for 2.02 Available - mitya - 2010-08-31

Found some minor issues in admin section still present in r183:

Failed login
Code:
Notice: Undefined variable: authenticated in …\admin\inc\login_functions.php on line 67

Website archive creation
Code:
Notice: Undefined variable: crc in …\admin\inc\zip.class.php on line 63
Notice: Undefined variable: c_len in …\admin\inc\zip.class.php on line 64
Notice: Undefined variable: unc_len in …\admin\inc\zip.class.php on line 65

Website health check
If some error connecting to http://get-simple.info/api/start/ occurs.
Code:
Notice: Trying to get property of non-object in …\admin\health-check.php on line 51


Archive contains 3 fixed files.


Beta Download for 2.02 Available - Oleg06 - 2010-09-01

For some reason title tag looks like this
[Image: 3.jpg]


Beta Download for 2.02 Available - sal - 2010-09-01

Oleg06 Wrote:For some reason title tag looks like this...
Pretty sure that's your browsers fault, no?


Beta Download for 2.02 Available - Oleg06 - 2010-09-02

[Image: 5.jpg]
[Image: 6.jpg]


Beta Download for 2.02 Available - Zegnåt - 2010-09-02

Oleg could you try it with my menu plugin and tell me if the error is in there as well? If it only exists with the build in menu it might be because of the new strip_quotes() function. That will be something we need to fix before launching the next stable.


Beta Download for 2.02 Available - Oleg06 - 2010-09-02

in your menu no tags title for links Smile
I recoded file basic.php, did not help
http://neowebtime.ru/000/


Beta Download for 2.02 Available - Zegnåt - 2010-09-02

Could you make a zip archive of your pages? (Just the XML-files in the pages folder.) Then I can take a look at what might be causing this.


Beta Download for 2.02 Available - Carlos - 2010-09-03

The problem is because of the new strip_quotes() function.

A possible fix: edit basic.php, line 373:

Code:
$text = strip_tags(mb_strtolower($text));

change to:

Code:
$text = strip_tags(mb_strtolower($text,'UTF-8'));

A different fix would be changing the function to not convert to lowercase. Might be replacing lines 372 to 376 by this:

Code:
$text = strip_tags($text);



Beta Download for 2.02 Available - Oleg06 - 2010-09-03

Thanks, it works http://neowebtime.ru/000/


Beta Download for 2.02 Available - Zegnåt - 2010-09-03

Thanks Carlos, I’ll check with Chris why we’re converting to lower case anyway. As we’re only replacing quotation marks in that function I don’t see a need to change letter case.


Beta Download for 2.02 Available - ccagle8 - 2010-09-10

i think it happened when I copied the code from some other function I see no reason for that to be done either...


Beta Download for 2.02 Available - ccagle8 - 2010-09-10

Thanks to Mitya and Carlos above for submitting the suggestions I've tested it out, and updated the SVN with the new files. I've also updated get-simple.info with the latest revision: http://get-simple-cms.googlecode.com/files/GetSimple-r184.zip