diff --git a/backup/util/helper/restore_decode_processor.class.php b/backup/util/helper/restore_decode_processor.class.php index 9fa58bc5db2..dda998e1531 100644 --- a/backup/util/helper/restore_decode_processor.class.php +++ b/backup/util/helper/restore_decode_processor.class.php @@ -162,8 +162,8 @@ class restore_decode_processor { * Perform some general checks in content. Returning false rules processing is skipped */ protected function precheck_content($content) { - // TODO: look for $@ in content - return $content; + // Look for $@ in content (all interlinks contain that) + return (strpos($content, '$@') === false) ? false : $content; } }