Changeset 434346
- Timestamp:
- 09/06/2011 10:56:47 PM (15 years ago)
- File:
-
- 1 edited
-
wp-green-cache/trunk/lib.php (modified) (2 diffs)
Legend:
- Unmodified
- Added
- Removed
-
wp-green-cache/trunk/lib.php
r434345 r434346 347 347 if (!is_writable( ABSPATH . 'wp-config.php' )) 348 348 $wpgc_notice .= _('<b>Warning:</b> Wordpress config file (wp-config.php) is not writable by server.' 349 .'Check its permissions. (Dont forget to restore original value [ex: 640])' , 'wpgc');349 .'Check its permissions. (Dont forget to restore original value [ex: 640])'); 350 350 351 351 if (!is_writable( ABSPATH . 'wp-content/' )) 352 352 $wpgc_notice .= _('<b>Warning:</b> Wordpress content directory (wp-content/) is not writable by server.' 353 .'Check its permissions. (Dont forget to restore original value.)' , 'wpgc');353 .'Check its permissions. (Dont forget to restore original value.)'); 354 354 355 355 if (!empty($wpgc_notice)) … … 467 467 $ret = 'Couldnt open dir: ' . dirname(__FILE__) . '/cache'; 468 468 469 $ret .= " (<a href='".$_SERVER['REQUEST_URI']."&clean_cache=true' title='"._('Delete all cached files' , 'wpgc')."'>"._('Clear cache')."</a>)";469 $ret .= " (<a href='".$_SERVER['REQUEST_URI']."&clean_cache=true' title='"._('Delete all cached files')."'>"._('Clear cache')."</a>)"; 470 470 471 471 return $ret;
Note: See TracChangeset
for help on using the changeset viewer.