Browse Source

Merge pull request #140 from paulboco/develop

Change attributes in paginator to public and fix issue #141
Taylor Otwell 13 years ago
parent
commit
498a83abe9
2 changed files with 6 additions and 6 deletions
  1. 4 4
      laravel/paginator.php
  2. 2 2
      laravel/security/auth.php

+ 4 - 4
laravel/paginator.php

@@ -14,28 +14,28 @@ class Paginator {
 	 *
 	 * @var int
 	 */
-	protected $page;
+	public $page;
 
 	/**
 	 * The last page available for the result set.
 	 *
 	 * @var int
 	 */
-	protected $last;
+	public $last;
 
 	/**
 	 * The total number of results.
 	 *
 	 * @var int
 	 */
-	protected $total;
+	public $total;
 
 	/**
 	 * The number of items per page.
 	 *
 	 * @var int
 	 */
-	protected $per_page;
+	public $per_page;
 
 	/**
 	 * The values that should be appended to the end of the link query strings.

+ 2 - 2
laravel/security/auth.php

@@ -112,7 +112,7 @@ class Auth {
 	 * and their user ID will be stored in the session via the "login" method.
 	 *
 	 * The user may also be "remembered", which will keep the user logged into the
-	 * application for one year or until they logout. The user is rememberd via
+	 * application for one year or until they logout. The user is remembered via
 	 * an encrypted cookie.
 	 *
 	 * @param  string  $username
@@ -128,7 +128,7 @@ class Auth {
 
 		if ( ! is_null($user))
 		{
-			static::login($user, $config, $remember);
+			static::login($user, $remember);
 
 			return true;
 		}