<dt>Remove all unsafe characters from filename
<dd>If checked, all characters that could possibly cause problems for filenaming will be replaced with '_'.<br>
Applies to characters:<br>
- * not supported by Windows characters: <i>/ : \ < > | * ? ' "</i><br>
+ * not supported by Windows characters: <i>/ : \ < > | * ? "</i><br>
* control characters (ASCII code below 32)<br>
* control and national characters (ASCII code above 122)<br>
<dt>Use Windows-compatible filenames
<dd>If checked:<br>
- * special characters not supported by Windows like: <i>/ : \ < > | * ? ' "</i> will be replaced with '_'<br>
+ * special characters not supported by Windows like: <i>/ : \ < > | * ? "</i> will be replaced with '_'<br>
* trailing spaces ' ' and dots '.' will be removed
</dl>
else if (cfg->dvr_clean_title &&
((*s < 32) || (*s > 122) ||
- (strchr("/:\\<>|*?'\"", *s) != NULL)))
+ (strchr("/:\\<>|*?\"", *s) != NULL)))
*s = '_';
else if (cfg->dvr_windows_compatible_filenames &&
- (strchr("/:\\<>|*?'\"", *s) != NULL))
+ (strchr("/:\\<>|*?\"", *s) != NULL))
*s = '_';
}