Welcome Guest, Not a member yet? Register   Sign In
pagination not reading config file
#13

[eluser]Gyzm[/eluser]
Hey folks,

I've figured this one out.

The reason why it worked for me the first time was because I was putting my configs into their own config file within the application/config folder. When you do this the parameters are initialized via the constructor. If you open your system/libraries/Pagination.php file you'll notice that the constructor has this control structure:

Code:
if ($this->anchor_class != '')
{
    $this->anchor_class = 'class="'.$this->anchor_class.'" ';
}

This control is in the wrong spot. It needs to be moved down into the initialize() function after all of your parameters have been set. So:

Code:
function initialize($params = array())
    {
        if (count($params) > 0)
        {
            foreach ($params as $key => $val)
            {
                if (isset($this->$key))
                {
                    $this->$key = $val;
                }
            }
        }
        
        if ($this->anchor_class != '')
        {
            $this->anchor_class = 'class="'.$this->anchor_class.'" ';
        }
    }

That should get'er workin' fer ya.


Messages In This Thread
pagination not reading config file - by El Forum - 05-05-2011, 06:06 PM
pagination not reading config file - by El Forum - 05-05-2011, 07:28 PM
pagination not reading config file - by El Forum - 05-05-2011, 08:16 PM
pagination not reading config file - by El Forum - 05-05-2011, 08:36 PM
pagination not reading config file - by El Forum - 05-05-2011, 09:04 PM
pagination not reading config file - by El Forum - 05-05-2011, 09:37 PM
pagination not reading config file - by El Forum - 05-05-2011, 10:11 PM
pagination not reading config file - by El Forum - 05-05-2011, 11:31 PM
pagination not reading config file - by El Forum - 05-05-2011, 11:56 PM
pagination not reading config file - by El Forum - 05-06-2011, 12:09 AM
pagination not reading config file - by El Forum - 05-06-2011, 01:19 AM
pagination not reading config file - by El Forum - 05-25-2011, 08:35 PM
pagination not reading config file - by El Forum - 05-30-2011, 09:23 PM
pagination not reading config file - by El Forum - 06-30-2011, 06:53 PM
pagination not reading config file - by El Forum - 06-30-2011, 10:41 PM
pagination not reading config file - by El Forum - 06-30-2011, 10:50 PM
pagination not reading config file - by El Forum - 06-30-2011, 11:10 PM
pagination not reading config file - by El Forum - 06-30-2011, 11:19 PM
pagination not reading config file - by El Forum - 07-01-2011, 12:10 AM



Theme © iAndrew 2016 - Forum software by © MyBB