(content, userID, hostName)
| 339 | } |
| 340 | |
| 341 | function revertFakeInfo(content, userID, hostName) { |
| 342 | content = content.replace(new RegExp(fakeUserID, 'g'), userID).replace(new RegExp(fakeHostName, 'g'), hostName); |
| 343 | return content; |
| 344 | } |
| 345 | |
| 346 | function generateFakeInfo(content, userID, hostName) { |
| 347 | content = content.replace(new RegExp(userID, 'g'), fakeUserID).replace(new RegExp(hostName, 'g'), fakeHostName); |