mirror of
https://github.com/Poniverse/Pony.fm.git
synced 2024-11-22 13:07:59 +01:00
fixed another thing
This commit is contained in:
parent
bf8670bc7d
commit
b757addd72
1 changed files with 1 additions and 1 deletions
|
@ -62,7 +62,7 @@
|
|||
|
||||
$track = $this->_track;
|
||||
$track->title = $this->_input['title'];
|
||||
$track->released_at = $this->_input['released_at'] != "" ? strtotime($this->_input['released_at']) : null;
|
||||
$track->released_at = isset($this->_input['released_at']) && $this->_input['released_at'] != "" ? strtotime($this->_input['released_at']) : null;
|
||||
$track->description = isset($this->_input['description']) ? $this->_input['description'] : '';
|
||||
$track->lyrics = isset($this->_input['lyrics']) ? $this->_input['lyrics'] : '';
|
||||
$track->license_id = $this->_input['license_id'];
|
||||
|
|
Loading…
Reference in a new issue