deny access to include files
darcs-hash:20080514190009-84dde-30f0f1b5955d71cd85563e12078ab02bf8645524.gz
This commit is contained in:
parent
104674fb0e
commit
0036795582
3
TODO
3
TODO
|
@ -13,7 +13,8 @@
|
|||
+ subscribe links on profile
|
||||
+ header menu
|
||||
+ footer menu
|
||||
- disallow direct to PHP files
|
||||
+ disallow direct to PHP files
|
||||
- require valid nicknames
|
||||
- common_local_url()
|
||||
- configuration system ($config)
|
||||
- RSS 1.0 feeds of a user's notices
|
||||
|
|
|
@ -1,5 +1,7 @@
|
|||
<?php
|
||||
|
||||
if (!defined('MICROBLOG')) { exit(1) }
|
||||
|
||||
class Action { // lawsuit
|
||||
|
||||
var $args;
|
||||
|
|
|
@ -31,4 +31,3 @@ class SettingsAction extends Action {
|
|||
} else {
|
||||
$this->show_form();
|
||||
}
|
||||
|
|
@ -1,4 +1,7 @@
|
|||
<?php
|
||||
|
||||
if (!defined('MICROBLOG')) { exit(1) }
|
||||
|
||||
/**
|
||||
* Table Definition for notice
|
||||
*/
|
||||
|
|
|
@ -1,4 +1,5 @@
|
|||
<?php
|
||||
if (!defined('MICROBLOG')) { exit(1) }
|
||||
/**
|
||||
* Table Definition for profile
|
||||
*/
|
||||
|
|
|
@ -1,4 +1,5 @@
|
|||
<?php
|
||||
if (!defined('MICROBLOG')) { exit(1) }
|
||||
/**
|
||||
* Table Definition for remote_profile
|
||||
*/
|
||||
|
|
|
@ -1,4 +1,5 @@
|
|||
<?php
|
||||
if (!defined('MICROBLOG')) { exit(1) }
|
||||
/**
|
||||
* Table Definition for subscription
|
||||
*/
|
||||
|
|
|
@ -1,4 +1,5 @@
|
|||
<?php
|
||||
if (!defined('MICROBLOG')) { exit(1) }
|
||||
/**
|
||||
* Table Definition for user
|
||||
*/
|
||||
|
|
|
@ -1,5 +1,7 @@
|
|||
<?php
|
||||
|
||||
if (!defined('MICROBLOG')) { exit(1) }
|
||||
|
||||
# global configuration object
|
||||
|
||||
// default configuration, overwritten in config.php
|
||||
|
|
|
@ -1,5 +1,7 @@
|
|||
<?php
|
||||
|
||||
if (!defined('MICROBLOG')) { exit(1) }
|
||||
|
||||
$dsn = array(
|
||||
'phptype' => 'pgsql',
|
||||
'username' => 'someuser',
|
||||
|
|
|
@ -1,6 +1,7 @@
|
|||
<?php
|
||||
|
||||
define('INSTALLDIR', dirname(__FILE__));
|
||||
define('MICROBLOG', true);
|
||||
|
||||
require_once(INSTALLDIR . "/common.php");
|
||||
|
||||
|
|
|
@ -1,5 +1,7 @@
|
|||
<?php
|
||||
|
||||
if (!defined('MICROBLOG')) { exit(1) }
|
||||
|
||||
define('NOTICES_PER_PAGE', 20);
|
||||
|
||||
class StreamAction extends Action {
|
||||
|
|
Loading…
Reference in New Issue
Block a user