]> git.wh0rd.org - tt-rss.git/commitdiff
change short php tags to long ones
authorAndrew Dolgov <fox@bah.spb.su>
Sat, 19 Aug 2006 07:04:45 +0000 (08:04 +0100)
committerAndrew Dolgov <fox@bah.spb.su>
Sat, 19 Aug 2006 07:04:45 +0000 (08:04 +0100)
20 files changed:
backend-rpc.php
backend.php
compat.php
db-prefs.php
db.php
errors.php
functions.php
index.php
login.php
logout.php
opml.php
prefs.php
sanity_check.php
sessions.php
stats.php
tt-rss.php
update_daemon.php
update_feeds.php
version.php
xml-rpc.php

index 3d9894ee7a67b89fd6fca101a0a7e621b576c53c..e7b42244a9606caf37b08a37ad401a0ab787e443 100644 (file)
@@ -1,4 +1,4 @@
-<?
+<?php
        function handle_rpc_request($link) {
 
                $subop = $_GET["subop"];
index 8b31297fb8760945036f47ca8f6cbf995723fc09..30e236ceca3384741c0d48a58a066f2f6a8d0ac2 100644 (file)
@@ -1,4 +1,4 @@
-<?
+<?php
        require_once "sessions.php";
        require_once "backend-rpc.php";
        
        db_close($link);
 ?>
 
-<!-- <?= sprintf("Backend execution time: %.4f seconds", getmicrotime() - $script_started) ?> -->
+<!-- <?php echo sprintf("Backend execution time: %.4f seconds", getmicrotime() - $script_started) ?> -->
 
index 57875398ba173e0a9c74cf02b00272a1a39cb98b..29f96236b512cfb6eadeaff92531fc2005840b55 100644 (file)
@@ -1,4 +1,4 @@
-<?
+<?php
 
 if (!function_exists('mb_strlen')) 
 {
index 519b35f236c025a96d0562a54b7e75a365e4e74b..07c4548d3f5fc8cfde82bda4ff71da00dc2b5a17 100644 (file)
@@ -1,4 +1,4 @@
-<?
+<?php
        require_once "config.php";
        require_once "db.php";
 
diff --git a/db.php b/db.php
index 8b1c5a3808c573642b9690534b61c034756c96d6..6d998bd6f907bd108c1f78b05b0470de9af39689 100644 (file)
--- a/db.php
+++ b/db.php
@@ -1,4 +1,4 @@
-<?
+<?php
 
 require_once "config.php";
 
index 603ef7056fd0201ba165c7a85e6ea93e83bd6a4f..2963beb8d973cb35a27dab9bdc68d3033ba3f313 100644 (file)
@@ -1,4 +1,4 @@
-<?
+<?php
        $ERRORS[0] = "Unknown error";
 
        $ERRORS[1] = "This program requires XmlHttpRequest " .
index 728d10f4e29d99680ff0de295ea5d0296616ce3a..e9863c36ac4df772d76b947e9ab6ad74651b9d2b 100644 (file)
@@ -1,4 +1,4 @@
-<?
+<?php
 
 /*     if ($_GET["debug"]) {
                define('DEFAULT_ERROR_LEVEL', E_ALL);
index b0c2b7779cc4cff83115934b3827489ff9ab7583..1078eedea1d5f88e9ecebe0e42f7efcc3befeb8d 100644 (file)
--- a/index.php
+++ b/index.php
@@ -1 +1 @@
-<? require "tt-rss.php" ?>
+<?php require "tt-rss.php" ?>
index 60e0cb1eaa4c3a4f8f19ee87cd0223109950a21e..9cfd58b1365fb0572d546c988b8bfd0c0e8f2fc2 100644 (file)
--- a/login.php
+++ b/login.php
@@ -1,4 +1,4 @@
-<?
+<?php
 //     require_once "sessions.php";
 
        require_once "sanity_check.php";
@@ -26,6 +26,7 @@
        $login = $_POST["login"];
        $password = $_POST["password"];
        $return_to = $_POST["rt"];
+       $action = $_POST["action"];
 
        if ($_COOKIE[get_session_cookie_name()]) {
                require_once "sessions.php";
@@ -66,7 +67,7 @@
                } else {
                        $error_msg = "Error: Unable to authenticate user. Please check login and password.";
                }
-       } else {
+       } else if ($action) {
                $error_msg = "Error: Either login or password is blank.";
        }
 
@@ -112,9 +113,9 @@ window.onload = init;
        </td>
 </tr><tr>
        <td align="center" valign="middle" class="loginMiddle" height="100%">
-               <? if ($error_msg) { ?>
-                       <div class="loginError"><?= $error_msg ?></div>
-               <? } ?>
+               <?php if ($error_msg) { ?>
+                       <div class="loginError"><?php echo $error_msg ?></div>
+               <?php } ?>
                <table>
                        <tr><td align="right">Login:</td>
                        <td><input name="login"></td></tr>
@@ -126,16 +127,17 @@ window.onload = init;
                        </td></tr>
                        <tr><td colspan="2" align="right">
                                <input type="submit" class="button" value="Login">
-                       <input type="hidden" name="rt" value="<?= $_GET['rt'] ?>">
+                               <input type="hidden" name="action" value="login">
+                               <input type="hidden" name="rt" value="<?php echo $_GET['rt'] ?>">
                        </td></tr>
                </table>
        </td>
 </tr><tr>
        <td align="center" class="loginBottom">
-               <a href="http://tt-rss.spb.ru/">Tiny-Tiny RSS</a> v<?= VERSION ?> &copy; 2005-2006 Andrew Dolgov
-               <? if (WEB_DEMO_MODE) { ?>
+               <a href="http://tt-rss.spb.ru/">Tiny-Tiny RSS</a> v<?php echo VERSION ?> &copy; 2005-2006 Andrew Dolgov
+               <?php if (WEB_DEMO_MODE) { ?>
                <br>Running in demo mode, some functionality is disabled.
-               <? } ?>
+               <?php } ?>
        </td>
 </tr>
 
@@ -143,7 +145,7 @@ window.onload = init;
 
 </form>
 
-<? db_close($link); ?>
+<?php db_close($link); ?>
 
 <script type="text/javascript">
        /* for IE */
index 056cc025dce29f3038e3ac067992f8a4fbe7b961..f3987d853963b323aa8e4451aa06d90c1b783517 100644 (file)
@@ -1,4 +1,4 @@
-<?
+<?php
        require_once "sessions.php";
 
        require_once "config.php";
@@ -39,4 +39,4 @@
                </div>
        </body>
        </html>
-<?     } ?>
+<?php  } ?>
index 72c22d5cf4132e82d6d97e94c2cfdba31d8626aa..1680267850f00553a0fafad70b4c795b4c46942b 100644 (file)
--- a/opml.php
+++ b/opml.php
@@ -1,4 +1,4 @@
-<?
+<?php
        require_once "sessions.php";
 
        require_once "sanity_check.php";
@@ -25,7 +25,7 @@
        
        if ($op == "Export") {
                header("Content-type: application/xml+opml");
-               print "<?xml version=\"1.0\"?>";
+               print "<?phpxml version=\"1.0\"?>";
        }
 
        if ($op == "Export") {
index 1e9aadd51f86650363d0c8eed9d1d55c995186bd..1774bce2d971a4e11ece3b1aaf26cf5401693613 100644 (file)
--- a/prefs.php
+++ b/prefs.php
@@ -1,4 +1,4 @@
-<?
+<?php
        require_once "functions.php"; 
 
        basic_nosid_redirect_check();
        <title>Tiny Tiny RSS : Preferences</title>
        <link rel="stylesheet" href="tt-rss.css" type="text/css">
 
-       <?      $user_theme = $_SESSION["theme"];
+       <?php   $user_theme = $_SESSION["theme"];
                if ($user_theme) { ?>
-               <link rel="stylesheet" type="text/css" href="themes/<?= $user_theme ?>/theme.css">
-       <? } ?>
+               <link rel="stylesheet" type="text/css" href="themes/<?php echo $user_theme ?>/theme.css">
+       <?php } ?>
 
-       <? if ($user_theme) { $theme_image_path = "themes/$user_theme/"; } ?>
+       <?php if ($user_theme) { $theme_image_path = "themes/$user_theme/"; } ?>
        
-       <? $user_css_url = get_pref($link, 'USER_STYLESHEET_URL'); ?>
-       <? if ($user_css_url) { ?>
-               <link type="text/css" href="<?= $user_css_url ?>"/> 
-       <? } ?>
+       <?php $user_css_url = get_pref($link, 'USER_STYLESHEET_URL'); ?>
+       <?php if ($user_css_url) { ?>
+               <link type="text/css" href="<?php echo $user_css_url ?>"/> 
+       <?php } ?>
 
-       <? if (get_pref($link, 'USE_COMPACT_STYLESHEET')) { ?>
+       <?php if (get_pref($link, 'USE_COMPACT_STYLESHEET')) { ?>
 
                <link rel="stylesheet" href="tt-rss_compact.css" type="text/css">
 
-       <? } else { ?>
+       <?php } else { ?>
 
                <link title="Compact Stylesheet" rel="alternate stylesheet" 
                        type="text/css" href="tt-rss_compact.css"/> 
 
-       <? } ?>
+       <?php } ?>
 
        <script type="text/javascript" src="prototype.js"></script>
 
-       <script type="text/javascript" src="functions.js?<?= $dt_add ?>"></script>
-       <script type="text/javascript" src="prefs.js?<?= $dt_add ?>"></script>
+       <script type="text/javascript" src="functions.js?<?php echo $dt_add ?>"></script>
+       <script type="text/javascript" src="prefs.js?<?php echo $dt_add ?>"></script>
 
        <div id="infoBoxShadow"><div id="infoBox">BAH</div></div>
 
@@ -89,57 +89,57 @@ window.onload = init;
 </div></div>
 
 <table width="100%" height="100%" cellspacing="0" cellpadding="0" class="main">
-<? if (get_pref($link, 'DISPLAY_HEADER')) { ?>
+<?php if (get_pref($link, 'DISPLAY_HEADER')) { ?>
 <tr>
        <td colspan="2">
                <table cellspacing="0" cellpadding="0" width="100%"><tr>
                        <td rowspan="2" class="header" valign="middle"> 
-                               <img src="<?= $theme_image_path ?>images/ttrss_logo.png" alt="Tiny Tiny RSS">   
+                               <img src="<?php echo $theme_image_path ?>images/ttrss_logo.png" alt="Tiny Tiny RSS">    
                        </td>
                        <td valign="top" class="notifyBox">
                                <div id="notify" class="notify"><span id="notify_body">&nbsp;</span></div>
                        </td>
                </tr><tr><td class="welcomePrompt">
-                       <? if (!SINGLE_USER_MODE) { ?>
-                               Hello, <b><?= $_SESSION["name"] ?></b>
+                       <?php if (!SINGLE_USER_MODE) { ?>
+                               Hello, <b><?php echo $_SESSION["name"] ?></b>
                                (<a href="logout.php">Logout</a>)
-                       <? } ?>
+                       <?php } ?>
                        </td>
                </tr></table>
        </td>
 </tr>
-<? } else { ?>
+<?php } else { ?>
 <tr>
        <td class="small">
                <div id="notify" class="notify_sm"><span id="notify_body">&nbsp;</span></div>
                <div id="userDlgShadow"><div id="userDlg">&nbsp;</div></div>
        </td><td class="welcomePrompt">
-               <? if (!SINGLE_USER_MODE) { ?>
-                       Hello, <b><?= $_SESSION["name"] ?></b>
+               <?php if (!SINGLE_USER_MODE) { ?>
+                       Hello, <b><?php echo $_SESSION["name"] ?></b>
                        (<a href="logout.php">Logout</a>)
-               <? } ?>
+               <?php } ?>
 </td></tr>
-<? } ?>
+<?php } ?>
 <tr>
        <td class="prefsTabs" align="left" valign="bottom">
                <input id="genConfigTab" class="prefsTab" type="submit" value="Preferences"
                        onclick="selectTab('genConfig')">
                <input id="feedConfigTab" class="prefsTab" type="submit" value="My Feeds"
                        onclick="selectTab('feedConfig')">
-               <? if (ENABLE_FEED_BROWSER && !SINGLE_USER_MODE) { ?>
+               <?php if (ENABLE_FEED_BROWSER && !SINGLE_USER_MODE) { ?>
                <input id="feedBrowserTab" class="prefsTab" type="submit" value="Other Feeds"
                        onclick="selectTab('feedBrowser')">
-               <? } ?>
+               <?php } ?>
                <input id="filterConfigTab" class="prefsTab" type="submit" value="Content Filtering"
                        onclick="selectTab('filterConfig')">
-               <? if (get_pref($link, 'ENABLE_LABELS')) { ?>
+               <?php if (get_pref($link, 'ENABLE_LABELS')) { ?>
                <input id="labelConfigTab" class="prefsTab" type="submit" value="Label Editor"
                        onclick="selectTab('labelConfig')">
-               <? } ?>
-               <? if ($_SESSION["access_level"] >= 10) { ?>
+               <?php } ?>
+               <?php if ($_SESSION["access_level"] >= 10) { ?>
                <input id="userConfigTab" class="prefsTab" type="submit" value="User Manager"
                        onclick="selectTab('userConfig')">
-               <? } ?>         
+               <?php } ?>              
        </td>
        <td class="prefsToolbar" valign="middle" align="right"> 
                <input type="submit" onclick="gotoMain()" class="button" value="Return to main">
@@ -152,19 +152,19 @@ window.onload = init;
 
        </td>
 </tr>
-<? if (get_pref($link, 'DISPLAY_FOOTER')) { ?>
+<?php if (get_pref($link, 'DISPLAY_FOOTER')) { ?>
 <tr>
        <td class="footer" colspan="2">
-               <a href="http://tt-rss.spb.ru/">Tiny-Tiny RSS</a> v<?= VERSION ?> &copy; 2005-2006 Andrew Dolgov
-               <? if (WEB_DEMO_MODE) { ?>
+               <a href="http://tt-rss.spb.ru/">Tiny-Tiny RSS</a> v<?php echo VERSION ?> &copy; 2005-2006 Andrew Dolgov
+               <?php if (WEB_DEMO_MODE) { ?>
                <br>Running in demo mode, some functionality is disabled.
-               <? } ?>
+               <?php } ?>
        </td>
 </td>
-<? } ?>
+<?php } ?>
 </table>
 
-<? db_close($link); ?>
+<?php db_close($link); ?>
 
 <script type="text/javascript">
        /* for IE */
index 9b3e4b1eb214b7f4a231c833d7413fc44892fff5..1addd7b7e94e65affbe58fd256ad018193cabf13 100644 (file)
@@ -1,4 +1,4 @@
-<?
+<?php
        define('EXPECTED_CONFIG_VERSION', 3);
 
        if (!file_exists("config.php")) {
index c64455b6191263c9cf28d04a56d10f8d9ff1e184..aab945d4dd0faedf56f80e8d8a7bb683276a5bba 100644 (file)
@@ -1,4 +1,4 @@
-<?
+<?php
        // Original from http://www.daniweb.com/code/snippet43.html
 
        require_once "config.php";
index 1d7d5efc0522729da050cf5a46b045df7329f7d5..fbff2d646a68d70abe7c8c4cb3997b1a7f3eb97c 100644 (file)
--- a/stats.php
+++ b/stats.php
@@ -1,4 +1,4 @@
-<?
+<?php
        require_once "sessions.php";
 
        require_once "sanity_check.php";
@@ -27,7 +27,7 @@
 
 <h2>Counters</h2>
 
-<?
+<?php
        $result = db_query($link, "SELECT count(id) AS cid,
                SUM(LENGTH(content)) AS size
                FROM ttrss_entries");
index 1c52f203d9a020c6553b81bb9c0fdf4690f61330..aa38a0d012e4022048046857d9d6acc1868d55e4 100644 (file)
@@ -1,4 +1,4 @@
-<?
+<?php
        require_once "functions.php"; 
 
        basic_nosid_redirect_check();
 
        <link rel="stylesheet" type="text/css" href="tt-rss.css">
 
-       <?      $user_theme = $_SESSION["theme"];
+       <?php   $user_theme = $_SESSION["theme"];
                if ($user_theme) { ?>
-               <link rel="stylesheet" type="text/css" href="themes/<?= $user_theme ?>/theme.css">
-       <? } ?>
+               <link rel="stylesheet" type="text/css" href="themes/<?php echo $user_theme ?>/theme.css">
+       <?php } ?>
 
-       <? if ($user_theme) { $theme_image_path = "themes/$user_theme/"; } ?>
+       <?php if ($user_theme) { $theme_image_path = "themes/$user_theme/"; } ?>
 
-       <? $user_css_url = get_pref($link, 'USER_STYLESHEET_URL'); ?>
-       <? if ($user_css_url) { ?>
-               <link type="text/css" href="<?= $user_css_url ?>"/> 
-       <? } ?>
+       <?php $user_css_url = get_pref($link, 'USER_STYLESHEET_URL'); ?>
+       <?php if ($user_css_url) { ?>
+               <link type="text/css" href="<?php echo $user_css_url ?>"/> 
+       <?php } ?>
 
-       <? if (get_pref($link, 'USE_COMPACT_STYLESHEET')) { ?>
+       <?php if (get_pref($link, 'USE_COMPACT_STYLESHEET')) { ?>
 
                <link rel="stylesheet" href="tt-rss_compact.css" type="text/css">
 
-       <? } else { ?>
+       <?php } else { ?>
 
                <link title="Compact Stylesheet" rel="alternate stylesheet" 
                        type="text/css" href="tt-rss_compact.css"/> 
 
-       <? } ?>
+       <?php } ?>
 
        <script type="text/javascript" src="prototype.js"></script>
 
-       <script type="text/javascript" src="tt-rss.js?<?= $dt_add ?>"></script>
-       <script type="text/javascript" src="functions.js?<?= $dt_add ?>"></script>
+       <script type="text/javascript" src="tt-rss.js?<?php echo $dt_add ?>"></script>
+       <script type="text/javascript" src="functions.js?<?php echo $dt_add ?>"></script>
        <!--[if gte IE 5.5000]>
                <script type="text/javascript" src="pngfix.js"></script>
                <link rel="stylesheet" type="text/css" href="tt-rss-ie.css">
@@ -94,43 +94,43 @@ window.onload = init;
 <div id="infoBoxShadow"><div id="infoBox">&nbsp;</div></div>
 
 <table width="100%" height="100%" cellspacing="0" cellpadding="0" class="main">
-<? if (get_pref($link, 'DISPLAY_HEADER')) { ?>
+<?php if (get_pref($link, 'DISPLAY_HEADER')) { ?>
 <tr>
        <td colspan="2" class="headerBox" id="mainHeader">
                <table cellspacing="0" cellpadding="0" width="100%"><tr>
                        <td rowspan="2" class="header" valign="middle"> 
-                               <img src="<?= $theme_image_path ?>images/ttrss_logo.png" alt="Tiny Tiny RSS">   
+                               <img src="<?php echo $theme_image_path ?>images/ttrss_logo.png" alt="Tiny Tiny RSS">    
                        </td>
                        <td valign="top" class="notifyBox">
                                <div id="notify" class="notify"><span id="notify_body">&nbsp;</span></div>
                        </td>
                </tr><tr><td class="welcomePrompt">
-                       <? if (!SINGLE_USER_MODE) { ?>
-                               Hello, <b><?= $_SESSION["name"] ?></b>
+                       <?php if (!SINGLE_USER_MODE) { ?>
+                               Hello, <b><?php echo $_SESSION["name"] ?></b>
                                (<a href="logout.php">Logout</a>)
-                       <? } ?>
+                       <?php } ?>
                        </td>                   
                </tr></table>
        </td>
 </tr>
-<? } else { ?>
+<?php } else { ?>
 <tr>
        <td class="small" id="mainHeader">
                <div id="notify" class="notify_sm"><span id="notify_body">&nbsp;</span></div>
                <div id="userDlgShadow"><div id="userDlg">&nbsp;</div></div>
        </td><td class="welcomePrompt">
-               <? if (!SINGLE_USER_MODE) { ?>
-                       Hello, <b><?= $_SESSION["name"] ?></b>
+               <?php if (!SINGLE_USER_MODE) { ?>
+                       Hello, <b><?php echo $_SESSION["name"] ?></b>
                        (<a href="logout.php">Logout</a>)
-               <? } ?>
+               <?php } ?>
 </td></tr>
-<? } ?>
+<?php } ?>
 <tr>
-       <? if (get_pref($link, 'COMBINED_DISPLAY_MODE')) 
+       <?php if (get_pref($link, 'COMBINED_DISPLAY_MODE')) 
                        $feeds_rowspan = 2;
                else 
                        $feeds_rowspan = 3; ?>
-       <td valign="top" rowspan="<?= $feeds_rowspan ?>" class="feeds"> 
+       <td valign="top" rowspan="<?php echo $feeds_rowspan ?>" class="feeds"> 
                <table class="innerFeedTable" 
                        cellspacing="0" cellpadding="0" height="100%" width="100%">
                <tr><td>
@@ -153,14 +153,14 @@ window.onload = init;
 
                <form id="main_toolbar_form">
 
-               <? if (get_pref($link, 'ENABLE_SEARCH_TOOLBAR')) { ?>
+               <?php if (get_pref($link, 'ENABLE_SEARCH_TOOLBAR')) { ?>
                <input name="query"
                        onKeyPress="return filterCR(event)"
                        onblur="javascript:enableHotkeys();" onfocus="javascript:disableHotkeys();">
                <input class="button" type="submit"
                        onclick="return viewCurrentFeed(0)" value="Search">
                &nbsp; 
-               <? } ?>
+               <?php } ?>
 
                View:           
                <select name="view_mode" onchange="viewCurrentFeed(0, '')">
@@ -171,7 +171,7 @@ window.onload = init;
                </select>
                
                &nbsp;Limit:            
-               <?
+               <?php
                $limits = array(15 => 15, 30 => 30, 60 => 60, 0 => "All");
                        
                $def_art_limit = get_pref($link, 'DEFAULT_ARTICLE_LIMIT');
@@ -214,9 +214,9 @@ window.onload = init;
                                <!-- <option>Edit this feed</option> -->
                                <option disabled>--------</option>
                                <option style="color : #5050aa" disabled>All feeds:</option>
-                               <? if (!ENABLE_UPDATE_DAEMON && !DAEMON_REFRESH_ONLY) { ?>
+                               <?php if (!ENABLE_UPDATE_DAEMON && !DAEMON_REFRESH_ONLY) { ?>
                                <option value="qmcUpdateFeeds">&nbsp;&nbsp;Update</option>
-                               <? } ?>
+                               <?php } ?>
                                <option value="qmcCatchupAll">&nbsp;&nbsp;Mark as read</option>                         
                                <option value="qmcShowOnlyUnread">&nbsp;&nbsp;Show only unread</option>
                                <option disabled>--------</option>
@@ -228,14 +228,14 @@ window.onload = init;
                </table>
        </td>
 </tr>
-<? if (get_pref($link, 'COMBINED_DISPLAY_MODE')) { ?>
+<?php if (get_pref($link, 'COMBINED_DISPLAY_MODE')) { ?>
 <tr>
        <td id="headlines" class="headlines2" valign="top">
                <iframe frameborder="0" name="headlines-frame" 
                        id="headlines-frame" class="headlinesFrame"></iframe>
        </td>
 </tr>
-<? } else { ?>
+<?php } else { ?>
 <tr>
        <td id="headlines" class="headlines" valign="top">
                <iframe frameborder="0" name="headlines-frame" 
@@ -247,20 +247,20 @@ window.onload = init;
                        id="content-frame" class="contentFrame"> </iframe>
        </td>
 </tr>
-<? } ?>
-<? if (get_pref($link, 'DISPLAY_FOOTER')) { ?>
+<?php } ?>
+<?php if (get_pref($link, 'DISPLAY_FOOTER')) { ?>
 <tr>
        <td colspan="2" class="footer" id="mainFooter">
-               <a href="http://tt-rss.spb.ru/">Tiny-Tiny RSS</a> v<?= VERSION ?> &copy; 2005-2006 Andrew Dolgov
-               <? if (WEB_DEMO_MODE) { ?>
+               <a href="http://tt-rss.spb.ru/">Tiny-Tiny RSS</a> v<?php echo VERSION ?> &copy; 2005-2006 Andrew Dolgov
+               <?php if (WEB_DEMO_MODE) { ?>
                <br>Running in demo mode, some functionality is disabled.
-               <? } ?>
+               <?php } ?>
        </td>
 </td>
-<? } ?>
+<?php } ?>
 </table>
 
-<? db_close($link); ?>
+<?php db_close($link); ?>
 
 <script type="text/javascript">
        /* for IE */
index a6fb5461d58d09eacef8b48d9825244212763914..5c70368200cddd8e4345eae09edd7bde5d858f8e 100644 (file)
@@ -1,5 +1,5 @@
 #!/usr/bin/php4
-<?
+<?php
        // this daemon runs in the background and updates all feeds
        // continuously
 
index 31e3a1283add1500f9734f28c8480313098bee56..5d8ea2da8287698b42aa060cc836a57c8eac5d9f 100644 (file)
@@ -1,5 +1,5 @@
 #!/usr/bin/php4
-<?
+<?php
        // this script is probably run not from your httpd-user, so cache
        // directory defined in config.php won't be accessible
        define('MAGPIE_CACHE_DIR', '/var/tmp/magpie-ttrss-cache-cli');
index 5e474734def25ad1427291dc80da488a144f5a61..9450b9bbbc7caa824c12bb180ca8eb5d995ea5b9 100644 (file)
@@ -1,3 +1,3 @@
-<?
+<?php
        define(VERSION, "1.2.1.99");
 ?>
index b02400dc29d88fcafbea65abf6f743fd16942828..eaa55e566c3a15ac9d29faefdb2f5228079f2fc7 100644 (file)
@@ -1,4 +1,4 @@
-<?
+<?php
        require "xmlrpc/lib/xmlrpc.inc";
        require "xmlrpc/lib/xmlrpcs.inc";