- Akismet is represented twice in FlatPress - once in the form of the Akismet plugin and once in the form of the Commentcenter plugin. - This PR removes the Akismet plugin and replaces it with the DateChanger plugin. - The Akismet plugin is given a place in the extra repo
		
			
				
	
	
		
			34 lines
		
	
	
		
			980 B
		
	
	
	
		
			PHP
		
	
	
		
			Executable File
		
	
	
	
	
			
		
		
	
	
			34 lines
		
	
	
		
			980 B
		
	
	
	
		
			PHP
		
	
	
		
			Executable File
		
	
	
	
	
<?php
 | 
						|
$fp_plugins = array(
 | 
						|
 | 
						|
	// to disable put // or # before the plugin name
 | 
						|
	// remove it to enable :)
 | 
						|
 | 
						|
	'jquery', // needed by ligthbox2 (quite heavy in size)
 | 
						|
	'lightbox2', // fancy usable img overlay effect, needs jquery
 | 
						|
	'thumb', // creates thumbnails adding scale=NN% to [img] tags :)
 | 
						|
	'bbcode', // bbcode-style formatting; if you disable this
 | 
						|
		// you'll loose some features, but you will be able to use html
 | 
						|
		// as a default
 | 
						|
	'accessibleantispam',
 | 
						|
	'qspam', // quick spam filter
 | 
						|
	'adminarea',
 | 
						|
	'archives',
 | 
						|
	// 'calendar', //time consuming, not really recommended :p
 | 
						|
	// 'lastcomments', // cache-based last-comments block
 | 
						|
	// 'lastcommentsadmin',
 | 
						|
	'lastentries',
 | 
						|
	// 'prettyurls', // The use of Apache web servers will be less than 50% worldwide in 2023
 | 
						|
	'categories',
 | 
						|
	'searchbox',
 | 
						|
	'blockparser',
 | 
						|
	'readmore',
 | 
						|
	'favicon',
 | 
						|
	'commentcenter',
 | 
						|
	'mediamanager',
 | 
						|
	// 'datechanger' // Lets you change the publish date for (new) entries.
 | 
						|
	'gallerycaptions',
 | 
						|
	'photoswipe'
 | 
						|
);
 | 
						|
?>
 |