Форуми / Cotonti / Bugs / For 0.9.12 users !!! bug found.

Bug in pages module

Macik
#1 04.12.2012 02:46

For all who uses last 0.9.12 release or «master» files dated later than 18-oct-2012 - check all added (last time) pages for correct owner id («page_ownerid»). 

Bug described as #1099.

Already fixed. Download new page.functions.php file (consider only who used v0.9.12).

https://github.com/macik
правильный хостинг — https://goo.gl/fjCa1F
elfrenazo
#2 04.12.2012 03:17

Should I change it?

Trustmaster
#3 04.12.2012 06:00

Thanks, Macik! I will tag 0.9.12.1 and repackage the release.

May the Source be with you!
Macik
#4 04.12.2012 13:51
#36413 elfrenazo:

Should I change it?

Only of you use v0.9.12 or latest files from «master brunch». This bug not consider other versions.

https://github.com/macik
правильный хостинг — https://goo.gl/fjCa1F
elfrenazo
#5 04.12.2012 21:24
#36418 Macik:
#36413 elfrenazo:

Should I change it?

Only of you use v0.9.12 or latest files from «master brunch». This bug not consider other versions.

 

ok thanks, Yesterday I actualize.

Uch
#6 05.12.2012 08:56

Theme function declaration error.

Function declaration in themes/sometheme/sometheme.php causes an fatal error: 

Cannot redeclare somefunction() (previously declared themes/sometheme/sometheme.php)

after apdate from 0.9.11 to 0.9.12

Trustmaster
#7 05.12.2012 09:17

Please wrap your functions with:

if (!function_exists('my_function')) {
    function my_function() ...
}

We need to load theme PHP file more than once to be able to override $R strings in it.

May the Source be with you!
Uch
#8 05.12.2012 09:55

Thanx! I'll try.