Skip to content

Commit

Permalink
joomla 4
Browse files Browse the repository at this point in the history
  • Loading branch information
diddipoeler committed Mar 19, 2023
1 parent 2153eb7 commit 6919997
Showing 1 changed file with 4 additions and 4 deletions.
8 changes: 4 additions & 4 deletions admin/models/player.php
Original file line number Diff line number Diff line change
Expand Up @@ -156,10 +156,10 @@ function importupload($post = array())
$this->jsmquery->clear();
$this->jsmquery->select('id');
$this->jsmquery->from('#__sportsmanagement_person');
$this->jsmquery->where('firstname ' . $this->jsmdb->Quote('' . $value->firstname . '') );
$this->jsmquery->where('lastname ' . $this->jsmdb->Quote('' . $value->lastname . '') );
$this->jsmquery->where('birthday ' . $this->jsmdb->Quote('' . $value->birthday . '') );
$this->jsmquery->where('country ' . $this->jsmdb->Quote('' . $value->country . '') );
$this->jsmquery->where('firstname like ' . $this->jsmdb->Quote('' . $value->firstname . '') );
$this->jsmquery->where('lastname like ' . $this->jsmdb->Quote('' . $value->lastname . '') );
$this->jsmquery->where('birthday like ' . $this->jsmdb->Quote('' . $value->birthday . '') );
$this->jsmquery->where('country like ' . $this->jsmdb->Quote('' . $value->country . '') );

$res = $this->jsmdb->loadResult();

Expand Down

0 comments on commit 6919997

Please sign in to comment.