Adds parent id option, finally getting some examine tests passing
This commit is contained in:
@@ -457,7 +457,7 @@ namespace Umbraco.Core
|
||||
/// <returns>The is null or white space.</returns>
|
||||
public static bool IsNullOrWhiteSpace(this string str)
|
||||
{
|
||||
return (str == null) || (str.Trim().Length == 0);
|
||||
return string.IsNullOrWhiteSpace(str);
|
||||
}
|
||||
|
||||
public static string IfNullOrWhiteSpace(this string str, string defaultValue)
|
||||
|
||||
Reference in New Issue
Block a user