比較バージョン

キー

  • この行は追加されました。
  • この行は削除されました。
  • 書式設定が変更されました。

...

コード ブロック
include_path = ".:/usr/share/ZendFramework/library:/var/www/library/libTiqr"

4.

...

Modify Library

Modification of ZendFramework

Following function have to be added in

【ZendFramework修正】=>作業報告書P23

/usr/share/ZendFramework/library/Zend/View/Helper/Placeholder/Container/Abstract.php に以下を追記

コード ブロック
/**
    * Sort the array by key
    *
    * @return array
    */
    public function ksort()
    {
        $items = $this->getArrayCopy();
        return ksort($items);
    }

...

Modification of Tiqr,Tiqr-

...

zf

Following modification is required in /var/www/library/tiqr-zf/Tiqr/Resource/Tiqr.php 修正(25ページ)

コード ブロック
# require_once "Tiqr/Server.php";
require_once "Tiqr/Service.php";

Following modifications are required in /var/www/library/tiqr-zf/Tiqr/Controller/Login/Abstract.php 修正(26ページ)

コード ブロック
# case Tiqr_Server::AUTH_RESULT_AUTHENTICATED:
case Tiqr_Service::AUTH_RESULT_AUTHENTICATED:
# case Tiqr_Server::AUTH_RESULT_INVALID_CHALLENGE:
case Tiqr_Service::AUTH_RESULT_INVALID_CHALLENGE:
# case Tiqr_Server::AUTH_RESULT_INVALID_REQUEST:
case Tiqr_Service::AUTH_RESULT_INVALID_REQUEST:
# case Tiqr_Server::AUTH_RESULT_INVALID_RESPONSE:
case Tiqr_Service::AUTH_RESULT_INVALID_RESPONSE:
# case Tiqr_Server::AUTH_RESULT_INVALID_USERID:
case Tiqr_Service::AUTH_RESULT_INVALID_USERID:

...