Lines Matching refs:result

148             $result = unserialize($this->_cache->retrieveCache(false));
149 if (is_array($result) && array_key_exists('url', $result)) {
150 $this->_phpbb_conf['url'] = $result['url'];
162 $result = $this->_phpbb_sql_link->prepare($query);
163 if ($result === false) {
167 if ($result->execute() === false) {
175 while ($row = $result->fetch(PDO::FETCH_ASSOC)) {
270 $result = $this->_phpbb_sql_link->prepare($query);
271 if ($result === false) {
275 if (!$result->execute(array($this->clean_username($user)))) {
279 $row = $result->fetch(PDO::FETCH_ASSOC);
284 $result->closeCursor();
285 $result = null;
355 $result = $this->_phpbb_sql_link->prepare($query);
356 if ($result === false) {
360 $result->bindValue(':name', $filter['name'], PDO::PARAM_STR);
361 $result->bindValue(':user', $filter['user'], PDO::PARAM_STR);
362 $result->bindValue(':nameclean', $filter['name'], PDO::PARAM_STR);
363 $result->bindValue(':userclean', $filter['user'], PDO::PARAM_STR);
364 $result->bindValue(':mail', $filter['mail'], PDO::PARAM_STR);
365 $result->bindValue(':limit', (int)$filter['limit'], PDO::PARAM_INT);
366 $result->bindValue(':start', (int)$filter['start'], PDO::PARAM_INT);
367 if (!$result->execute()) {
373 while ($row = $result->fetch(PDO::FETCH_ASSOC)) {
415 $result->closeCursor();
416 $result = null;
443 $result = $this->_phpbb_sql_link->prepare($query);
444 if ($result === false) {
448 $result->bindValue(':limit', (int)$limit, PDO::PARAM_INT);
449 $result->bindValue(':start', (int)$start, PDO::PARAM_INT);
450 if (!$result->execute()) {
455 while ($row = $result->fetch(PDO::FETCH_ASSOC)) {
460 $result->closeCursor();
461 $result = null;
669 $result = unserialize($this->_cache->retrieveCache(false));
670 if (is_array($result) && array_key_exists('cookie_name', $result)) {
671 $this->_phpbb_conf['cookie_name'] = $result['cookie_name'];
684 $result = $this->_phpbb_sql_link->prepare($query);
685 if ($result === false) {
689 if (!$result->execute()) {
693 $row = $result->fetch(PDO::FETCH_ASSOC);
695 $result->closeCursor();
696 $result = null;
719 $result = $this->_phpbb_sql_link->prepare($query);
720 if ($result === false) {
724 if (!$result->execute(array($this->_phpbb_user_id))) {
728 while ($row = $result->fetch(PDO::FETCH_ASSOC)) {
735 $result->closeCursor();
736 $result = null;
767 $result = $this->_phpbb_sql_link->prepare($query);
768 if ($result === false) {
772 if (!$result->execute(array($this->_phpbb_user_session_id))) {
776 $row = $result->fetch(PDO::FETCH_ASSOC);
779 $result->closeCursor();
780 $result = null;
785 $result->closeCursor();
786 $result = null;
793 $result = $this->_phpbb_sql_link->prepare($query);
794 if ($result === false) {
798 if (!$result->execute(array($current_time, $this->_phpbb_user_session_id))) {
801 $result = null;
811 $result = $this->_phpbb_sql_link->prepare($query);
812 if ($result === false) {
816 if (!$result->execute(array($this->_phpbb_user_id))) {
820 $row = $result->fetch(PDO::FETCH_ASSOC);
824 $result->closeCursor();
825 $result = null;