Hi,

Our project requires us to run OpenScholar on an https server. When you include spacer.gif to report version information, you include an image from an http server, throwing back errors.

We have no problem with reporting version info, but we need to remove this external image. I cannot for the life of me find where to disable this variable. Can you please advise me?

Thanks!

Sample code of the variable being called:

<?php if(variable_get('openscholar_reportverinfo', 1)){ ?><img src="http://openscholar.harvard.edu/openscholar_lu/spacer.gif?<?php echo drupal_query_string_encode($openscholar_version_info) ?>" /><?php } ?>

Comments

rbrandon’s picture

We were going to add that to the install process but have not yet gotten to that.

For now you could add it with:

drush
drush variable-set openscholar_reportverinfo 0

or with

SQL
INSERT INTO `variable` VALUES('openscholar_reportverinfo', 's:1:"0"');