Skip to content

Commit

Permalink
Rename getBriefSessionListAndExtraByCategory() to getShortSessionList…
Browse files Browse the repository at this point in the history
…AndExtraByCategory() to match other functions names - refs BT#9092
  • Loading branch information
ywarnier committed Feb 23, 2015
1 parent 58b4bf6 commit 32b87b3
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 2 deletions.
2 changes: 1 addition & 1 deletion main/inc/lib/sessionmanager.lib.php
Expand Up @@ -5444,7 +5444,7 @@ public static function getCoursesListByCourseCoach($coachId)
* @param array $extraFields A list of fields to be scanned and returned
* @return mixed
*/
public static function getBriefSessionListAndExtraByCategory($categoryId, $target, $extraFields = null) {
public static function getShortSessionListAndExtraByCategory($categoryId, $target, $extraFields = null) {
// Init variables
$categoryId = (int) $categoryId;
$sessionList = array();
Expand Down
Expand Up @@ -408,7 +408,7 @@ public static function WSSessionListInCategory($params)
'target',
'schedule'
);
$sessionList = SessionManager::getBriefSessionListAndExtraByCategory($sessionCategoryId, $params['target'], $fields);
$sessionList = SessionManager::getShortSessionListAndExtraByCategory($sessionCategoryId, $params['target'], $fields);

return $sessionList;
}
Expand Down

0 comments on commit 32b87b3

Please sign in to comment.