Skip to content
Projects
Groups
Snippets
Help
Loading...
Help
Submit feedback
Contribute to GitLab
Sign in / Register
Toggle navigation
S
syncEnrollments
Project
Project
Details
Activity
Releases
Cycle Analytics
Repository
Repository
Files
Commits
Branches
Tags
Contributors
Graph
Compare
Charts
Issues
0
Issues
0
List
Board
Labels
Milestones
Merge Requests
0
Merge Requests
0
CI / CD
CI / CD
Pipelines
Jobs
Schedules
Charts
Wiki
Wiki
Snippets
Snippets
Members
Members
Collapse sidebar
Close sidebar
Activity
Graph
Charts
Create a new issue
Jobs
Commits
Issue Boards
Open sidebar
Yeray Santana Hualde
syncEnrollments
Commits
7af0304f
Commit
7af0304f
authored
Jun 21, 2012
by
Taylor Otwell
Browse files
Options
Browse Files
Download
Plain Diff
Merge branch 'master' into develop
parents
1b062499
6e28d0bf
Changes
3
Hide whitespace changes
Inline
Side-by-side
Showing
3 changed files
with
3 additions
and
3 deletions
+3
-3
connection.php
laravel/database/connection.php
+1
-1
usage.md
laravel/documentation/auth/usage.md
+1
-1
session.php
laravel/session.php
+1
-1
No files found.
laravel/database/connection.php
View file @
7af0304f
...
...
@@ -194,7 +194,7 @@ class Connection {
return
$statement
->
rowCount
();
}
// For insert statements that use the "returning" clause, which is allowed
// by datab
sa
e systems such as Postgres, we need to actually return the
// by datab
as
e systems such as Postgres, we need to actually return the
// real query result so the consumer can get the ID.
elseif
(
stripos
(
$sql
,
'insert'
)
===
0
and
stripos
(
$sql
,
'returning'
)
!==
false
)
{
...
...
laravel/documentation/auth/usage.md
View file @
7af0304f
...
...
@@ -63,7 +63,7 @@ It is common to limit access to certain routes only to logged in users. In Larav
To protect a route, simply attach the
**auth**
filter:
Route::get('admin', array('before' => 'auth', function() {});
Route::get('admin', array('before' => 'auth', function() {})
)
;
> **Note:** You are free to edit the **auth** filter however you like. A default implementation is located in **application/routes.php**.
...
...
laravel/session.php
View file @
7af0304f
<?php
namespace
Laravel
;
<?php
namespace
Laravel
;
use
Closure
;
class
Session
{
...
...
Write
Preview
Markdown
is supported
0%
Try again
or
attach a new file
Attach a file
Cancel
You are about to add
0
people
to the discussion. Proceed with caution.
Finish editing this message first!
Cancel
Please
register
or
sign in
to comment