-build.xml, phing build file -@package tags at acl_selector.php and db_update.php -added documentation and some IDE files to .gitignore -automated tool to find files that corrupt the doc build process -removed ansi characters from SSH1.php, docBlox could not handle them
		
			
				
	
	
		
			33 lines
		
	
	
		
			559 B
		
	
	
	
		
			PHP
		
	
	
		
			Executable File
		
	
	
	
	
			
		
		
	
	
			33 lines
		
	
	
		
			559 B
		
	
	
	
		
			PHP
		
	
	
		
			Executable File
		
	
	
	
	
| <?php
 | |
| /**
 | |
| * @package util
 | |
| */
 | |
| 
 | |
| /* 
 | |
| * require boot.php
 | |
| */
 | |
| require_once("boot.php");
 | |
| 
 | |
| $a = new App;
 | |
| @include(".htconfig.php");
 | |
| 
 | |
| $lang = get_language();
 | |
| load_translation_table($lang);
 | |
| 
 | |
| require_once("dba.php");
 | |
| $db = new dba($db_host, $db_user, $db_pass, $db_data, false);
 | |
|         unset($db_host, $db_user, $db_pass, $db_data);
 | |
| 
 | |
| $build = get_config('system','build');
 | |
| 
 | |
| echo "Old DB VERSION: " . $build . "\n";
 | |
| echo "New DB VERSION: " . DB_UPDATE_VERSION . "\n";
 | |
| 
 | |
| 
 | |
| if($build != DB_UPDATE_VERSION) {
 | |
| 	echo "Updating database...";
 | |
| 	check_config();
 | |
| 	echo "Done\n";
 | |
| }
 | |
| 
 |