their correct locations/namespaces/assemblies and obsoleted all of the old ones and ensure the old webforms files don't exist where the obsoleted ones were. Fixes a security issue with the installer ajax service (used to be p.aspx, now is InstallerRestService.aspx)
32 lines
613 B
C#
32 lines
613 B
C#
using System;
|
|
using System.Collections.Generic;
|
|
using System.Linq;
|
|
using System.Text;
|
|
|
|
namespace Umbraco.Web.UI
|
|
{
|
|
public enum SpeechBubbleIcon
|
|
{
|
|
/// <summary>
|
|
/// Save icon
|
|
/// </summary>
|
|
Save,
|
|
/// <summary>
|
|
/// Info icon
|
|
/// </summary>
|
|
Info,
|
|
/// <summary>
|
|
/// Error icon
|
|
/// </summary>
|
|
Error,
|
|
/// <summary>
|
|
/// Success icon
|
|
/// </summary>
|
|
Success,
|
|
/// <summary>
|
|
/// Warning icon
|
|
/// </summary>
|
|
Warning
|
|
}
|
|
}
|