<?xml version="1.0"?>
<!DOCTYPE modification SYSTEM "http://www.simplemachines.org/xml/modification">

<modification xmlns="http://www.simplemachines.org/xml/modification" xmlns:smf="http://www.simplemachines.org/">
	<id>aaronvg:googletalkfield</id>
	<version>1.0.1</version>

	<file name="$themedir/Profile.template.php">
		<operation>
			<search position="before"><![CDATA[<tr>
								<td width="40%"><b>', $txt[513], ': </b><div class="smalltext">', $txt[600], '</div></td>
								<td><input type="text" name="ICQ" size="24" value="', $context['member']['icq']['name'], '" /></td>
							</tr><tr>
			]]></search>
			<add><![CDATA[
							<tr>
								<td width="40%"><b>Google Talk: </b><div class="smalltext">Your GMail address.</div></td>
								<td><input type="text" name="default_options[gtalk]" size="24" value="', ($context['member']['options']['gtalk'] ? $context['member']['options']['gtalk'] : ''), '" /></td>
							</tr>
			]]></add>
		</operation>

		<operation>
			<search position="before"><![CDATA[</tr><tr>
					<td><b>', $txt[513], ':</b></td>
					<td>', $context['member']['icq']['link_text'], '</td>
				</tr><tr>
			]]></search>
			<add><![CDATA[
				</tr><tr>
					<td><b>Google Talk:</b></td>
					<td>' . (!empty($context['member']['options']['gtalk']) ? '<a href="mailto:' . $context['member']['options']['gtalk'] . '">' . $context['member']['options']['gtalk'] . '</a>' : '') . '</td>
				</tr><tr>
			]]></add>
		</operation>
	</file>
	
	<file name="$themedir/Display.template.php">
		<operation>
			<search position="before"><![CDATA[// This shows the popular messaging icons.
			echo '
			]]></search>
			<add><![CDATA[
								', (!empty($message['member']['options']['gtalk']) ? '<a href="mailto:' . $message['member']['options']['gtalk'] . '"><img border="0" src="' . $settings['images_url'] . '/gtalk.gif"></a>' : ''), '
			]]></add>
		</operation>
	</file>
</modification>