You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
I change upload path from widget parameters into 'images', but it still using 'assets' as upload path.
i modified components/UWfile.php line 60 to this, and it does the job.
[code]
if ($this->_new_file_path){
$this->_new_file_path .= $this->unique_dir($this->_new_file_path).'/';
} else {
$this->_new_file_path = pathinfo($this->_old_file_path, PATHINFO_DIRNAME).'/';
}
[/code]
Sorry, I'm still new to this git hub thingie
The text was updated successfully, but these errors were encountered:
I change upload path from widget parameters into 'images', but it still using 'assets' as upload path.
i modified components/UWfile.php line 60 to this, and it does the job.
[code]
if ($this->_new_file_path){
$this->_new_file_path .= $this->unique_dir($this->_new_file_path).'/';
} else {
$this->_new_file_path = pathinfo($this->_old_file_path, PATHINFO_DIRNAME).'/';
}
[/code]
Sorry, I'm still new to this git hub thingie
The text was updated successfully, but these errors were encountered: