Skip to content
This repository has been archived by the owner on Jun 14, 2018. It is now read-only.

Commit

Permalink
Bugfix inside functions.php for wrong db-function-call.
Browse files Browse the repository at this point in the history
  • Loading branch information
aldus committed Sep 15, 2014
1 parent 51d08c3 commit cfd027a
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion functions.php
Original file line number Diff line number Diff line change
Expand Up @@ -41,7 +41,7 @@ function getSettings( &$section_id ){
global $database;
$sql = 'SELECT * FROM `'.TABLE_PREFIX.'mod_foldergallery_jq_settings` WHERE `section_id` = '.$section_id;
$result = array();
$database->prepare_and_execute( $sql, true, $result, false);
$database->execute_query( $sql, true, $result, false);
return $result;
}

Expand Down

0 comments on commit cfd027a

Please sign in to comment.