diff --git a/libraries/joomla/controller/base.php b/libraries/joomla/controller/base.php index a6a506890fbee..b3730ff35ac94 100644 --- a/libraries/joomla/controller/base.php +++ b/libraries/joomla/controller/base.php @@ -15,7 +15,7 @@ * Joomla Platform Base Controller Class * * @since 3.0.0 - * @deprecated 5.0 Use the default MVC library + * @deprecated 4.0 Use the default MVC library */ abstract class JControllerBase implements JController { diff --git a/libraries/joomla/controller/controller.php b/libraries/joomla/controller/controller.php index 15f551070aeec..9898d907f4ada 100644 --- a/libraries/joomla/controller/controller.php +++ b/libraries/joomla/controller/controller.php @@ -15,7 +15,7 @@ * Joomla Platform Controller Interface * * @since 3.0.0 - * @deprecated 5.0 Use the default MVC library + * @deprecated 4.0 Use the default MVC library */ interface JController extends Serializable { diff --git a/libraries/joomla/model/base.php b/libraries/joomla/model/base.php index ce813f1974535..3b0f14b09d9f2 100644 --- a/libraries/joomla/model/base.php +++ b/libraries/joomla/model/base.php @@ -15,7 +15,7 @@ * Joomla Platform Base Model Class * * @since 3.0.0 - * @deprecated 5.0 Use the default MVC library + * @deprecated 4.0 Use the default MVC library */ abstract class JModelBase implements JModel { diff --git a/libraries/joomla/model/database.php b/libraries/joomla/model/database.php index 7c02622ed4bd1..53f6b9f547e61 100644 --- a/libraries/joomla/model/database.php +++ b/libraries/joomla/model/database.php @@ -15,7 +15,7 @@ * Joomla Platform Database Model Class * * @since 3.0.0 - * @deprecated 5.0 Use the default MVC library + * @deprecated 4.0 Use the default MVC library */ abstract class JModelDatabase extends JModelBase { diff --git a/libraries/joomla/model/model.php b/libraries/joomla/model/model.php index 1f6e4d9928cb8..cfbc0a132533d 100644 --- a/libraries/joomla/model/model.php +++ b/libraries/joomla/model/model.php @@ -15,7 +15,7 @@ * Joomla Platform Model Interface * * @since 3.0.0 - * @deprecated 5.0 Use the default MVC library + * @deprecated 4.0 Use the default MVC library */ interface JModel { diff --git a/libraries/joomla/view/base.php b/libraries/joomla/view/base.php index 146b906b25c55..d0ddb400012e9 100644 --- a/libraries/joomla/view/base.php +++ b/libraries/joomla/view/base.php @@ -13,7 +13,7 @@ * Joomla Platform Base View Class * * @since 3.0.0 - * @deprecated 5.0 Use the default MVC library + * @deprecated 4.0 Use the default MVC library */ abstract class JViewBase implements JView { diff --git a/libraries/joomla/view/html.php b/libraries/joomla/view/html.php index 2bb7b436651b5..20c64f2a94666 100644 --- a/libraries/joomla/view/html.php +++ b/libraries/joomla/view/html.php @@ -15,7 +15,7 @@ * Joomla Platform HTML View Class * * @since 3.0.0 - * @deprecated 5.0 Use the default MVC library + * @deprecated 4.0 Use the default MVC library */ abstract class JViewHtml extends JViewBase { diff --git a/libraries/joomla/view/view.php b/libraries/joomla/view/view.php index 6bfb9df14ed90..92a64e6716e2a 100644 --- a/libraries/joomla/view/view.php +++ b/libraries/joomla/view/view.php @@ -13,7 +13,7 @@ * Joomla Platform View Interface * * @since 3.0.0 - * @deprecated 5.0 Use the default MVC library + * @deprecated 4.0 Use the default MVC library */ interface JView {