I found a couple of small bugs that I fixed myself and maybe you want to fix on your side also.
In file lib/framework/helper.layout.php at line 229 is now
- Code: Select all
$doc->addCustomTag('<link rel="apple-touch-icon-precompose" href="'.$touch_image.'">');
but should be
- Code: Select all
$doc->addCustomTag('<link rel="apple-touch-icon-precomposed" href="'.$touch_image.'">');
(fixes icon set on Apple devices)
In file html/com_content/article/default.php at line 201 is now
- Code: Select all
<gavern:social><a href="http://twitter.com/share" class="twitter-share-button" data-text="<?php echo $this->item->title; ?>" data-url="<?php $cur_url; ?>" gk_tweet_btn_settings>Tweet</a></gavern:social>
but should be
- Code: Select all
<gavern:social><a href="http://twitter.com/share" class="twitter-share-button" data-text="<?php echo $this->item->title; ?>" data-url="<?php $cur_url; ?>" GK_TWEET_BTN_SETTINGS>Tweet</a></gavern:social>
(fixes twitter share button preferences not loaded)
Hope it helps.