diff options
| -rw-r--r-- | Bablotron.php | 6 | ||||
| -rw-r--r-- | BitLanguage.php | 4 |
2 files changed, 5 insertions, 5 deletions
diff --git a/Bablotron.php b/Bablotron.php index 5325e78..8be8ba2 100644 --- a/Bablotron.php +++ b/Bablotron.php @@ -32,17 +32,17 @@ class Bablotron extends BitBase /** * @todo Variable is scoped here but not really used in this scope below. */ - var $words; + public $words; /** * Used to store the current language. * * @todo Not sure where this gets set from. Is used in other libraries. */ - var $lan; + public $lan; /** * @todo Empty variable - does nothing */ - var $db; + public $db; /** * Spellchecking and finding of alternative words */ diff --git a/BitLanguage.php b/BitLanguage.php index a865cc3..6b2838f 100644 --- a/BitLanguage.php +++ b/BitLanguage.php @@ -15,9 +15,9 @@ */ class BitLanguage extends BitSingleton { // list of available (non-disabled) languages - var $mLanguageList; + public $mLanguageList; - var $mLanguage; + public $mLanguage; /** * initiate BitLanguage |
