@@ -235,7 +235,7 @@ function akamai_settings_form() {
'remove'=>t('Remove'),
'invalidate'=>t('Invalidate'),
),
'#description'=>t('The default clearing action. The options are <em>remove</em> (which removes the item from the Akamai cache) and <em>invalidate</em> (which leaves the item in the cache, but invalidates it so that the origin will be hit on the next request)'),
'#description'=>t('The default clearing action. The options are <em>remove</em> (which removes the item from the Akamai cache) and <em>invalidate</em> (which leaves the item in the cache, but invalidates it so that the origin will be hit on the next request.)'),
'#required'=>TRUE,
);
@@ -305,7 +305,7 @@ function akamai_settings_form_validate(&$form, &$form_state) {
}
}
// check if timeout value is an integer
// Check if timeout value is an integer.
$filtered_akamai_timeout=filter_var(
$form_state['values']['akamai_timeout'],
FILTER_VALIDATE_INT,
@@ -326,7 +326,7 @@ function akamai_manual_purge_form() {
$form['paths']=array(
'#type'=>'textarea',
'#title'=>t('Paths/URLs'),
'#description'=>t('Enter one URL per line. URL entries should be relative to the basepath. (e.g. node/1, content/pretty-title, sites/default/files/some/image.png'),
'#description'=>t('Enter one URL per line. Wildcards are not currently supported by v2 or v3 of the CCU REST API. URL entries should be relative to the basepath. (e.g. node/1, content/pretty-title, sites/default/files/some/image.png)'),
);
$form['domain_override']=array(
@@ -337,7 +337,7 @@ function akamai_manual_purge_form() {