i should really handle this META at DbUpdate

This commit is contained in:
2019-03-12 22:40:58 +01:00
parent 30f64257e7
commit fd076a8d63
3 changed files with 20 additions and 2 deletions

View File

@@ -33,5 +33,22 @@ namespace LaDOSE.Business.Helper
return null;
}
//Quick Fix to not leak Email.
//TODO : Parse this shit and put it in database (and git rid of it in the UI)
public static string CleanWpMeta(this string meta)
{
PhpSerializer p = new PhpSerializer();
var deserialize = p.Deserialize(meta);
Hashtable currentmeta = deserialize as Hashtable;
if (currentmeta != null)
{
currentmeta["registration"] = null;
}
return p.Serialize(currentmeta);
}
}
}