mirror of
https://github.com/Poniverse/Pony.fm.git
synced 2024-11-22 04:58:01 +01:00
Merge branch 'development'
This commit is contained in:
commit
43fbd56565
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