On all site install log messages I have been seeing:

Undefined variable: missing_requirement install_6.inc:214

FWIW, the warning goes away after initializing this variable (around line 191):

  $missing_requirement = FALSE;
CommentFileSizeAuthor
#1 888210.patch764 bytesergonlogic

Comments

ergonlogic’s picture

StatusFileSize
new764 bytes

patch attached

tstoeckler’s picture

Status: Active » Needs review

Another fix would be to change (l. 214):

if ($missing_requirement) {

to

if (isset($missing_requirement)) {

I don't know what the preference is.
Also changing to 'needs review' because there's a patch here.

Anonymous’s picture

Status: Needs review » Fixed

Went with isset.

Thanks!

Status: Fixed » Closed (fixed)

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

  • Commit 891ba3d on debian, dev-koumbit, dev-migrate_aliases, dev-multiserver-install, dev-simplerinstaller, prod-koumbit, dev-ssl-ip-allocation-refactor, dev-1205458-move_sites_out_of_platforms, 7.x-3.x, dev-subdir-multiserver, 6.x-2.x-backports, dev-helmo-3.x by mig5:
    #888210 fix undefined variable message