Current time: 05-24-2012, 01:53 PM Hello There, Guest! (LoginRegister)


 
Thread Rating:
  • 0 Votes - 0 Average
  • 1
  • 2
  • 3
  • 4
  • 5
[F] Archive - bug with non-numeric $page [C-Chris]
03-02-2009, 12:27 PM (This post was last modified: 03-02-2009 12:38 PM by koziolek.)
Post: #1
[F] Archive - bug with non-numeric $page [C-Chris]
MyBB 1.4.4, confirmed here too:
http://community.mybboard.net/archive/in...tpost.html

In archive mode links to threads with 0 replies and a string as param (e.g. "lastpost") produce error:
Code:
1064 - You have an error in your SQL syntax; check the manual that corresponds to your MySQL server version for the right syntax to use near '-10, 10' at line 1
Query:
SELECT pid FROM posts WHERE tid='34200' AND visible='1' ORDER BY dateline LIMIT -10, 10
because of variable $page with value "lastpost".
PHP Code:
        if($page)
        {
            
$start = ($page-1) * $perpage;
        }
        else
        {
            
$start 0;
            
$page 1;
        } 
A possible solution is to replace first line with:
PHP Code:
if(is_int($page)) 
or maybe add $page = intval($page) ; just before using $page?

www.kozik.net.pl
- So... Maybe you shouldn't have hacked it.
- And why don't you try not breathing. Hurts, dunnit. (userfriendly.org)
Visit this user's website Find all posts by this user
03-02-2009, 02:26 PM
Post: #2
RE: Archive - bug with non-numeric $page
(03-02-2009 12:27 PM)koziolek Wrote:  ...
or maybe add $page = intval($page) ; just before using $page?

This is the more correct way,

File 'archive\global.php', lines 78-87 Wrote:
PHP Code:
if($endpart != "index.php")
{
    
$endpart str_replace(".html"""$endpart);
    
$todo explode("-"$endpart3);
    if(
$todo[0])
    {
        
$action $todo[0];
    }
    
$page $todo[2];
    
$id intval($todo[1]); 
The line:
PHP Code:
    $page $todo[2]; 
Should be:
PHP Code:
    $page intval($todo[2]); 

Creativity is a drug I cannot live without.
[Image: 1]Support PM will be ignored
Visit this user's website Find all posts by this user
03-02-2009, 02:53 PM
Post: #3
[F] Archive - bug with non-numeric $page
Thank you for your bug report.

This bug has been fixed in our internal code repository. Please note that the problem will not be fixed here until these forums are updated.

With regards,
MyBB Group
Visit this user's website Find all posts by this user
03-02-2009, 02:53 PM
Post: #4
RE: [F] Archive - bug with non-numeric $page
dvb's fix is correct
Visit this user's website Find all posts by this user


Forum Jump:


User(s) browsing this thread: 1 Guest(s)

Contact Us | MyBB | Return to Top | Return to Content | Lite (Archive) Mode | RSS Syndication