From da08385a8cf4881e855c04c369feaa2e17aabb4d Mon Sep 17 00:00:00 2001 From: Oliver Davies Date: Mon, 15 Jun 2015 10:56:40 +0100 Subject: [PATCH] Fixed alt text --- source/_posts/2015-04-03-minimum-core-version.md | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/source/_posts/2015-04-03-minimum-core-version.md b/source/_posts/2015-04-03-minimum-core-version.md index b9edfaa83..b02ad4083 100644 --- a/source/_posts/2015-04-03-minimum-core-version.md +++ b/source/_posts/2015-04-03-minimum-core-version.md @@ -56,7 +56,7 @@ In the original scenario, we want to specify that the module can only be enabled Because we need to check for Drupal's core version, we're using the system module as the dependency and specifying that it needs to be either equal to or greater than 7.36. If this dependency is not met, e.g. Drupal 7.35 is being used, then the module cannot be enabled rather than showing a function not found error for `user_has_role()` when it is called. -!['A screenshot of the modules page showing System as a dependency for a custom module.'](/assets/images/blog/minimum-drupal-version-d7.png) +![A screenshot of the modules page showing System as a dependency for a custom module.](/assets/images/blog/minimum-drupal-version-d7.png) ## External Links