FIX : Feeding cannot be displayed .2.6.1

Please report bugs here!

Moderator: Thorsten

Post Reply
UTAKA
Posts: 37
Joined: Sun Jan 24, 2010 8:01 am
Location: phpmyfaq-jp.org
Contact:

FIX : Feeding cannot be displayed .2.6.1

Post by UTAKA »

Feeding cannot be displayed .2.6.1

Feeding can be displayed...
/feed/topten/rss.php 

/feed/category/rss.php?category_id=*&category_lang=**


But Feeding cannot be displayed.
/feed/news/rss.php
/feed/latest/rss.php .
/feed/openquestions/rss.php <--Add.2010/02/01
#
#-----[ OPEN ]-----------------------------------
#
/feed/news/rss.php and /feed/latest/rss.php
AND /feed/openquestions/rss.php <--Add.2010/02/01

#
#-----[ FIND ]-----------------------------------
# About Line50

Code: Select all

} else {
    $LANGCODE = 'en';
}
#
#-----[ AFTER, ADD ]-----------------------------
#

Code: Select all

//
// Initalizing static string wrapper
//
PMF_String::init($LANGCODE);
#
#-----[ SAVE AS UTF-8 Code/CLOSE ALL FILES ]-----
#
Last edited by UTAKA on Mon Feb 01, 2010 5:54 am, edited 2 times in total.
---------------------------------------
Sorry...I am not good at English.
http://www.phpmyfaq-jp.org
---------------------------------------
Thorsten
Posts: 15561
Joined: Tue Sep 25, 2001 11:14 am
Location: #phpmyfaq
Contact:

Re: FIX : Feeding cannot be displayed .2.6.1

Post by Thorsten »

Hi,

thanks for the hint, I fixed it in my git repo.

bye
Thorsten
phpMyFAQ Maintainer and Lead Developer
amazon.de Wishlist
scape
Posts: 201
Joined: Tue Apr 08, 2003 1:16 pm

Re: FIX : Feeding cannot be displayed .2.6.1

Post by scape »

War auch schon im 2.6.0
Ich warte einfach mal das nächste Update ab.
Thorsten
Posts: 15561
Joined: Tue Sep 25, 2001 11:14 am
Location: #phpmyfaq
Contact:

Re: FIX : Feeding cannot be displayed .2.6.1

Post by Thorsten »

Hi,

fixed in 2.6.2.

bye
Thorsten
phpMyFAQ Maintainer and Lead Developer
amazon.de Wishlist
UTAKA
Posts: 37
Joined: Sun Jan 24, 2010 8:01 am
Location: phpmyfaq-jp.org
Contact:

Re: FIX : Feeding cannot be displayed .2.6.1

Post by UTAKA »

Sorry..
/feed/openquestions/rss.php
Feeding cannot be displayed.

Please same Fix.
---------------------------------------
Sorry...I am not good at English.
http://www.phpmyfaq-jp.org
---------------------------------------
UTAKA
Posts: 37
Joined: Sun Jan 24, 2010 8:01 am
Location: phpmyfaq-jp.org
Contact:

Re: FIX : Feeding cannot be displayed .2.6.1

Post by UTAKA »

Feed Date(pubDate) Fix

feed/news/rss.php
feed/topten/rss.php
feed/openquestions/rss.php
##########################
#
# rss pubDate Fix
#
#
##---[OPEN]-----------------------------
#

/feed/news/rss.php

#
##--[FIND]------------------------------
#
$rss->writeElement('pubDate', PMF_Date::createRFC822Date($item['date'], false));

#
##--[REPLASE WITH]------------------------------
#

$rss->writeElement('pubDate', PMF_Date::createRFC822Date($item['date'], true));

#
##---[OPEN]-----------------------------
#

feed/topten/rss.php

#
##--[FIND]------------------------------
#

$rss->writeElement('pubDate', PMF_Date::createRFC822Date($item['last_visit'], true));

#
##--[REPLASE WITH]------------------------------
#

$rss->writeElement('pubDate', PMF_Date::createRFC822Date($item['last_visit'], false));

#
##---[OPEN]-----------------------------
#

/feed/openquestions/rss.php

#
##--[FIND]------------------------------
#

$rss->writeElement('pubDate', PMF_Date::createRFC822Date($item['date'], false));

#
##--[REPLASE WITH]------------------------------
#
$rss->writeElement('pubDate', PMF_Date::createRFC822Date($item['date'], true));
---------------------------------------
Sorry...I am not good at English.
http://www.phpmyfaq-jp.org
---------------------------------------
Thorsten
Posts: 15561
Joined: Tue Sep 25, 2001 11:14 am
Location: #phpmyfaq
Contact:

Re: FIX : Feeding cannot be displayed .2.6.1

Post by Thorsten »

Hi,

already fixed in my git repo: http://github.com/thorsten/phpMyFAQ/tree/2.6

bye
Thorsten
phpMyFAQ Maintainer and Lead Developer
amazon.de Wishlist
UTAKA
Posts: 37
Joined: Sun Jan 24, 2010 8:01 am
Location: phpmyfaq-jp.org
Contact:

Re: FIX : Feeding cannot be displayed .2.6.1

Post by UTAKA »

OH latest is repo... :oops:
I will have repo seen.
---------------------------------------
Sorry...I am not good at English.
http://www.phpmyfaq-jp.org
---------------------------------------
Thorsten
Posts: 15561
Joined: Tue Sep 25, 2001 11:14 am
Location: #phpmyfaq
Contact:

Re: FIX : Feeding cannot be displayed .2.6.1

Post by Thorsten »

Hi,

no problem... :-)

bye
Thorsten
phpMyFAQ Maintainer and Lead Developer
amazon.de Wishlist
Post Reply