Closed (duplicate)
Project:
Open Enterprise
Version:
7.x-1.0-beta7
Component:
Code
Priority:
Major
Category:
Bug report
Assigned:
Unassigned
Reporter:
Created:
17 Apr 2012 at 01:46 UTC
Updated:
6 Feb 2013 at 03:17 UTC
Jump to comment: Most recent, Most recent file
Comments
Comment #1
TimelessDomain commentedAccording to #1428952: Alpha3 causes Notice: Undefined variable: replacements in uuid_tokens() (line 95 of ...sites\all\modules\uuid\uuid.tokens.) you should update to the latest version of UUID
Comment #2
August1914 commentedSee http://drupal.org/node/1428952, although note that the latest release is still 1.0-alpha3 and the fix is apparently in a dev build. In the meantime, if you want, you can patch your own version by just adding the line
$replacements = arrary();at the beginning of function uuid_tokens in uuid.tokens.inc, then the notice will go away, and you can wait for the fix in uuid to make it at least to an alpha...
Comment #3
stanoman commentedCode worked for me, just had to correct it to:
$replacements = array();Comment #4
Dubber Dan commentedThanks that did the trick
Comment #5
jackhutton commentedthank you for this post.. worked for me.
Comment #6
trailerparkopera commentedHere's a patch that fixes this in the UUID .dev version
Comment #7
HyperD commentedPlease pay attention to the little misspelling:
$replacements = array();and not
$replacements = arrary();;)
Comment #8
Anonymous (not verified) commentedThank you!