You are here

public function InstapageCmsPluginServicesModel::stripSlashesGpc in Instapage plugin 8.3

Same name and namespace in other branches
  1. 7.3 core/models/InstapageCmsPluginServicesModel.php \InstapageCmsPluginServicesModel::stripSlashesGpc()

Strips the slashes.

Parameters

string &$$value Value to strip slashes from.:

File

core/models/InstapageCmsPluginServicesModel.php, line 46

Class

InstapageCmsPluginServicesModel
Class responsible for managing the landing pages.

Code

public function stripSlashesGpc(&$value) {
  $value = stripslashes($value);
}