/[cvs]/nfo/php/libs/org.netfrag.glib/Application/Request/HttpController.php
ViewVC logotype

Diff of /nfo/php/libs/org.netfrag.glib/Application/Request/HttpController.php

Parent Directory Parent Directory | Revision Log Revision Log | View Patch Patch

revision 1.3 by joko, Wed Mar 5 18:54:42 2003 UTC revision 1.6 by joko, Sun Apr 6 04:27:45 2003 UTC
# Line 10  Line 10 
10   */   */
11    
12  /**  /**
13     * <b>Cvs-Log:</b>
14     *
15     * <pre>
16   * $Id$   * $Id$
17   *   *
18   * $Log$   * $Log$
19     * Revision 1.6  2003/04/06 04:27:45  joko
20     * shortcut for LinkBuilder
21     *
22     * Revision 1.5  2003/04/06 01:39:32  jonen
23     * + now, ask LinkBuilder for GET vars if linkbuilder-ID exists at GET var(s)
24     *
25     * Revision 1.4  2003/03/11 01:22:22  joko
26     * + fixed metadata for phpDocumentor
27     *
28   * Revision 1.3  2003/03/05 18:54:42  joko   * Revision 1.3  2003/03/05 18:54:42  joko
29   * updated docu - phpDocumentor is very strict about its 'blocks'...   * updated docu - phpDocumentor is very strict about its 'blocks'...
30   *   *
# Line 23  Line 35 
35   *   *
36   * Revision 1.1  2003/03/01 21:11:18  joko   * Revision 1.1  2003/03/01 21:11:18  joko
37   * + initial commit   * + initial commit
38   *   * </pre>
39   *   *
40   */   */
41    
# Line 68  class Application_Request_HttpController Line 80  class Application_Request_HttpController
80    }    }
81    
82    function get_request() {    function get_request() {
83      return php::array_join_merge($_GET, $_POST);      // FIXME!?
84        if ($lbid = $_GET[lbid]) {
85          // talk to LinkBuilder...
86          require_once('utils/links.php');
87          return link::restore($lbid);
88        } else {
89          return php::array_join_merge($_GET, $_POST);
90        }
91    }    }
92    
93    function get_request_translated() {    function get_request_translated() {

Legend:
Removed from v.1.3  
changed lines
  Added in v.1.6

MailToCvsAdmin">MailToCvsAdmin
ViewVC Help
Powered by ViewVC 1.1.26 RSS 2.0 feed