Hi,

I tried to install the module on drupal 5.7.
I have got the following error:

Fatal error: Call to undefined function drupal_install_schema() in /home/sitename/public_html/drupal/dv1/sites/all/modules/qdrupal/qdrupal.install on line 7

Is it a bug?

Comments

mikehostetler’s picture

Are you sure you are using the correct version? The drupal_install_schema function is only available for Drupal 6.

carlogen’s picture

I am sure.

If you try toopen the file qdrupal.install by yourself you will notice it has schema functions.

this is an etract from the file above qdrupal version qdrupal 5.x-1.x-dev

<?php

/**
 * Implementation of hook_install().
 */
function qdrupal_install() {
	drupal_install_schema('qdrupal');
}

/**
 * Implementation of hook_uninstall().
 */
function qdrupal_uninstall() {
	drupal_uninstall_schema('qdrupal');
}

/**
 * Implementation of hook_uninstall().
 */

.................
mikehostetler’s picture

Status: Active » Fixed

Status: Fixed » Closed (fixed)

Automatically closed -- issue fixed for 2 weeks with no activity.