tags:

views:

270

answers:

2

And if so, what does it do?

I've noticed it in some html written by a former co-worker (so I can't ask the author). I'd guess it was a typo, except that it's in a couple different places in a couple different templates, used as the source attribute for an image.

For example:

<IMG height="6" src="ihttp://www.ourdomain.com/images/f2f3f4.gif" width="5">

The top google results point to some sort of apache/php/mysql installer, but we're running IIS, so I can't imagine that that's related.

+5  A: 

Typo. Nothing More.

No such protocol exists. What you are seeing is a classic design pattern called cut-and-paste. If I have to guess, I would say that i was previously the leading i in images/f2f3f4.gif.

Yuval A
At an old place I worked we called this "goat code" after a goatloving copy+paster. Nice guy, but his code made you want to beat him with a hammer.
overslacked
Your explanation rings true; even if can't prove it, that's good enough to reassure me. Thanks.
Matt
+1  A: 

its a typo AND a bug - lucky you!

Scott Evernden