diff --git a/tasks/main.yml b/tasks/main.yml
index 39b93d7cb29dfb68cae960c240fac5be1a8117b0..545dbfa49a2b9960fcefa749aab63c3a79f0eccc 100644
--- a/tasks/main.yml
+++ b/tasks/main.yml
@@ -11,7 +11,7 @@
 
 - block:
 
-  - include_tasks: php.yml
+  - import_tasks: php.yml
 
   - name: "Link PhpEnMod for PHP 5.3"
     file:
diff --git a/tasks/php.yml b/tasks/php.yml
index 3167af10f6a5072f3bb0c6ccc90536463020c161..95bbeb2d79491732bba0471167cc40cfa13227ce 100644
--- a/tasks/php.yml
+++ b/tasks/php.yml
@@ -49,7 +49,7 @@
   notify:
     - "Apache | Restart Apache"
 
-- include_tasks: php53.yml
+- import_tasks: php53.yml
   when: php_version|default('5.5') == '5.3'
 
 - name: "PHP | Configuration file, fcgid.conf"
@@ -106,7 +106,7 @@
     owner=www-data
     group=www-data
 
-- include_tasks: oci-{{ php_version|default('5.5') }}.yml
+- import_tasks: oci-{{ php_version|default('5.5') }}.yml
   when: repository is defined and php_needs_oci8
 
 - name: "PHP | Ensure ImageMagick config directory"