Index: trunk/extensions/SemanticMediaWiki/includes/storage/SMW_SQLStoreLight.php |
— | — | @@ -144,6 +144,7 @@ |
145 | 145 | '_ema' => 'smw_atts2', // Email type |
146 | 146 | '_uri' => 'smw_atts2', // URL/URI type |
147 | 147 | '_anu' => 'smw_atts2', // Annotation URI type |
| 148 | + '_tel' => 'smw_atts2', // Telephone number |
148 | 149 | '_wpg' => 'smw_rels2', // Page type |
149 | 150 | '_wpp' => 'smw_rels2', // Property page type |
150 | 151 | '_wpc' => 'smw_rels2', // Category page type |
— | — | @@ -179,6 +180,7 @@ |
180 | 181 | '_ema' => array( 't', 0, 0 ), // Email type |
181 | 182 | '_uri' => array( 't', 0, 0 ), // URL/URI type |
182 | 183 | '_anu' => array( 't', 0, 0 ), // Annotation URI type |
| 184 | + '_tel' => array( 't', 0, 0 ), // Telephone number |
183 | 185 | '_wpg' => array( 'tnwt', 3, 3 ), // Page type |
184 | 186 | '_wpp' => array( 'tnwt', 3, 3 ), // Property page type |
185 | 187 | '_wpc' => array( 'tnwt', 3, 3 ), // Category page type |
Index: trunk/extensions/SemanticMediaWiki/includes/storage/SMW_SQLStore2.php |
— | — | @@ -126,6 +126,7 @@ |
127 | 127 | '_ema' => 'smw_atts2', // Email type |
128 | 128 | '_uri' => 'smw_atts2', // URL/URI type |
129 | 129 | '_anu' => 'smw_atts2', // Annotation URI type |
| 130 | + '_tel' => 'smw_atts2', // Telephone number |
130 | 131 | '_wpg' => 'smw_rels2', // Page type |
131 | 132 | '_wpp' => 'smw_rels2', // Property page type |
132 | 133 | '_wpc' => 'smw_rels2', // Category page type |
— | — | @@ -160,6 +161,7 @@ |
161 | 162 | '_ema' => array( 't', 0, 0 ), // Email type |
162 | 163 | '_uri' => array( 't', 0, 0 ), // URL/URI type |
163 | 164 | '_anu' => array( 't', 0, 0 ), // Annotation URI type |
| 165 | + '_tel' => array( 't', 0, 0 ), // Telephone number |
164 | 166 | '_wpg' => array( 'tnwt', 3, 3 ), // Page type |
165 | 167 | '_wpp' => array( 'tnwt', 3, 3 ), // Property page type |
166 | 168 | '_wpc' => array( 'tnwt', 3, 3 ), // Category page type |
— | — | @@ -2079,7 +2081,7 @@ |
2080 | 2082 | SMWSQLStore2::$prop_tables['smw_redi2']->idsubject = false; |
2081 | 2083 | |
2082 | 2084 | wfRunHooks( 'SMWPropertyTables', array( &SMWSQLStore2::$prop_tables ) ); |
2083 | | - |
| 2085 | + |
2084 | 2086 | return SMWSQLStore2::$prop_tables; |
2085 | 2087 | } |
2086 | 2088 | |