Changeset 1015302
- Timestamp:
- 10/28/2014 02:07:28 PM (11 years ago)
- Location:
- wpnewsman-newsletters/trunk
- Files:
-
- 2 edited
-
ajaxbackend.php (modified) (1 diff)
-
class.utils.php (modified) (1 diff)
Legend:
- Unmodified
- Added
- Removed
-
wpnewsman-newsletters/trunk/ajaxbackend.php
r1015230 r1015302 1479 1479 $installed = 0; 1480 1480 1481 $url = 'http://blog.dev/wp-admin/admin.php?page=newsman-templates'; //temporary1482 $method = 'GET';1483 1484 1481 $files = $this->getUploadedFiles('template', true); 1485 1482 if ( $files ) { -
wpnewsman-newsletters/trunk/class.utils.php
r1015230 r1015302 1071 1071 $tpl->name = $templateName; 1072 1072 $tpl->subject = __('Enter Subject Here', NEWSMAN); 1073 $tpl->html = $this->processAssetsURLs($this->file_get_contents_utf8($fileName), $templateURL); 1074 1075 if ( file_exists($particlesFileName) ) { 1073 if ( @file_exists($fileName) ) { 1074 $tpl->html = $this->processAssetsURLs($this->file_get_contents_utf8($fileName), $templateURL); 1075 } 1076 1077 if ( @file_exists($particlesFileName) ) { 1076 1078 $tpl->particles = $this->processAssetsURLs($this->file_get_contents_utf8($particlesFileName), $templateURL); 1077 1079 } else {
Note: See TracChangeset
for help on using the changeset viewer.