Change record status: 
Project: 
Introduced in branch: 
7.x
Introduced in version: 
7.9
Description: 

Before Drupal 7.9, an undocumented variable $uri was available to use in node templates. Due to the core bug fix, this variable is no longer available in node templates. This does not affect any core themes.

Before:

//sites/all/themes/mytheme/node.tpl.php:
print $uri['path'];

After:

//sites/all/themes/mytheme/node.tpl.php:
$uri = entity_uri('node', $node);
print $uri['path'];
Impacts: 
Site builders, administrators, editors
Themers
Updates Done (doc team, etc.)
Online documentation: 
Not done
Theming guide: 
Not done
Module developer documentation: 
Not done
Examples project: 
Not done
Coder Review: 
Not done
Coder Upgrade: 
Not done
Other: 
Other updates done