Skip to content

Commit 56a30fd

Browse files
committed
Gitphp: replace deprecated db_query_bound() call
Fixes #222
1 parent 0d84dc3 commit 56a30fd

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

SourceGitphp/SourceGitphp.php

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -196,7 +196,7 @@ public function import_full( $p_repo ) {
196196
$t_query = "SELECT parent FROM $t_changeset_table
197197
WHERE repo_id=" . db_param() . ' AND branch=' . db_param() .
198198
' ORDER BY timestamp ASC';
199-
$t_result = db_query_bound( $t_query, array( $p_repo->id, $t_branch ), 1 );
199+
$t_result = db_query( $t_query, array( $p_repo->id, $t_branch ), 1 );
200200

201201
$t_commits = array( $t_branch );
202202

0 commit comments

Comments
 (0)