Intellitype variable overwrite

Project:VS.Php for Visual Studio 2005
Component:Editor
Category:bug report
Priority:minor
Assigned:Unassigned
Status:active
Description

I'm running into a problem with intellitype overwriting a variable name if you're picking a function. For example, if you have the following line of code:

<?php
$query
.= "'".$this->obj_var."', ";
?>

and then start typing:

<?php
$query
.= "'".addsla$this->obj_var."', ";
?>

in order to use the addslashses function, and then hit tab once it's selected in the pop-up, you get

<?php
$query
.= "'".addslaaddslashes->obj_var."', ";
?>

when of course you want

<?php
$query
.= "'".addslashes($this->obj_var)."', ";
?>

Just a goofy quirk. Thanks!