Skip to content
This repository has been archived by the owner on Sep 25, 2023. It is now read-only.

Commit

Permalink
*8794* Add missing notification getter (and deprecate old style funct…
Browse files Browse the repository at this point in the history
…ion naming)
  • Loading branch information
asmecher committed Jun 9, 2014
1 parent a2521a7 commit 7655632
Showing 1 changed file with 9 additions and 1 deletion.
10 changes: 9 additions & 1 deletion classes/conference/Conference.inc.php
Expand Up @@ -45,10 +45,18 @@ function getUrl() {
}

/**
* Get the localized title of the conference.
* Get the localized title of the conference (DEPRECATED).
* @return string
*/
function getConferenceTitle() {
return $this->getLocalizedTitle();
}

/**
* Get the localized title of the conference.
* @return string
*/
function getLocalizedTitle() {
return $this->getLocalizedSetting('title');
}

Expand Down

0 comments on commit 7655632

Please sign in to comment.