Skip to content

Commit

Permalink
Merge pull request #73 from TourCMS/release/4.4.0
Browse files Browse the repository at this point in the history
release/4.4.0
  • Loading branch information
paulslugocki committed Oct 4, 2023
2 parents adad4e6 + 4aa4068 commit c5f6e1c
Showing 1 changed file with 4 additions and 3 deletions.
7 changes: 4 additions & 3 deletions src/TourCMS.php
Expand Up @@ -22,7 +22,7 @@
*/

# TourCMS: PHP wrapper class for TourCMS Rest API
# Version: 4.3.0
# Version: 4.4.0

namespace TourCMS\Utils;

Expand Down Expand Up @@ -245,8 +245,9 @@ public function api_rate_limit_status($channel = 0) {

# Channel methods

public function list_channels() {
return($this->request('/p/channels/list.xml'));
public function list_channels($params = "") {
$params = $this->validateParams($params);
return($this->request('/p/channels/list.xml'.$params));
}

public function channel_upload_logo_get_url($channel)
Expand Down

0 comments on commit c5f6e1c

Please sign in to comment.