| @@ -46,8 +46,9 @@ | ||
| 46 | 46 | |
| 47 | 47 | // MD5 hashes |
| 48 | 48 | if (preg_match('/^[0-9a-f]{32}$/i', $guid)) : |
| 49 | 49 | $seek[] = SyndicatedPost::normalize_guid_prefix().$guid; |
| 50 | + $seek[] = SyndicatedPost::alternative_guid_prefix().$guid; | |
| 50 | 51 | endif; |
| 51 | 52 | |
| 52 | 53 | // Invalid URIs, URIs that WordPress just doesn't like, and URIs |
| 53 | 54 | // that WordPress decides to munge. |
| @@ -53,10 +54,11 @@ | ||
| 53 | 54 | // that WordPress decides to munge. |
| 54 | 55 | $nGuid = SyndicatedPost::normalize_guid($guid); |
| 55 | 56 | if ($guid != $nGuid) : |
| 56 | 57 | $seek[] = $nGuid; |
| 58 | + $seek[] = SyndicatedPost::alternative_guid($guid); | |
| 57 | 59 | endif; |
| 58 | - | |
| 60 | + | |
| 59 | 61 | // Escape to prevent frak-ups, injections, etc. |
| 60 | 62 | $seek = array_map('esc_sql', $seek); |
| 61 | 63 | |
| 62 | 64 | // Assemble |